@@ -30,7 +30,8 @@ class Configuration:
3030 memento_file : str = ""
3131 sponsor_secret_key : bytes = bytes .fromhex (os .environ .get ("SPONSOR_SECRET_KEY" , DEFAULT_SPONSOR_SECRET_KEY ))
3232 users_mnemonic : str = os .environ .get ("USERS_MNEMONIC" , DEFAULT_USERS_MNEMONIC )
33- num_users : int = 128
33+ num_users_per_shard : int = 16
34+ users_in_projected_shard : bool = False
3435 generate_relayed_v1 : bool = False
3536 generate_relayed_v2 : bool = False
3637 generate_relayed_v3 : bool = False
@@ -66,14 +67,16 @@ class Configuration:
6667 proxy_url = "https://devnet-gateway.multiversx.com" ,
6768 activation_epoch_sirius = 629 ,
6869 activation_epoch_spica = 2327 ,
69- activation_epoch_relayed_v3 = 4294967295 ,
70+ activation_epoch_relayed_v3 = 2991 ,
7071 check_construction_native_configuration_file = "systemtests/mesh_cli_config/devnet-construction-native.json" ,
7172 check_construction_custom_configuration_file = "systemtests/mesh_cli_config/devnet-construction-custom.json" ,
7273 check_data_configuration_file = "systemtests/mesh_cli_config/check-data.json" ,
7374 check_data_directory = "systemtests/devnet-data" ,
7475 check_data_num_blocks = 0 ,
7576 memento_file = "systemtests/memento/devnet.json" ,
7677 view_url = "https://devnet-explorer.multiversx.com/transactions/{hash}" ,
78+ users_in_projected_shard = True ,
79+ generate_relayed_v3 = True
7780 ),
7881 "testnet" : Configuration (
7982 network_id = "T" ,
0 commit comments