-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.default.properties
246 lines (227 loc) · 7.59 KB
/
.default.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# Binaries used within the tests for the supported operating systems, namely Darwin and Linux.
#
[binaries.darwin]
go = /usr/local/go/bin/go
solc = /usr/local/bin/solc
ganache = /usr/local/bin/ganache-cli
gnuplot = /opt/local/bin/gnuplot
node = /usr/local/bin/node
node_path = /usr/local/lib/node_modules
npm=/usr/local/bin/npm
npx = /usr/local/bin/npx
docker = /usr/local/bin/docker
[binaries.linux]
go = /usr/bin/go
solc = /usr/local/bin/solc
ganache = /usr/local/bin/ganache-cli
gnuplot = /usr/bin/gnuplot
node = /usr/bin/node
node_path = /usr/lib/node_modules:/usr/local/lib/node_modules
npm=/usr/bin/npm
npx = /usr/bin/npx
docker = /usr/bin/docker
[persistence.db]
host = <set in user.properties>
user = <set in user.properties>
database = <set in user.properties>
password = <set in user.properties>
# Constants relating to the different environments the tests can run against namely Ten, Sepolia, Arbitrum and Ganache.
# The account PKs used are randomly generated and do not relate to any real values. To use real values from a metamask
# wallet, override in your ~/.tentest/user.properties file.
#
[env.all]
FundAcntPK = 044288029c015996cc86a466be8493cd4eb35ae67d766e7ee4e85f808d15ffe3
Account1PK = bdde68c85301a9bda94a4d0e74647a32dde36b7901771499b9aec7ec32d284a5
Account2PK = 3ab8c160028192b8048ecc2afd031f213a01778893225507e2c8f4f23d01de6d
Account3PK = fd0a2c4f8f0a2212fe7b2189c6e603dc43915da304cec7b63f1834488af4b508
Account4PK = 7fef220e68a232dc45cf63df7fdebe2b42938a290b9a2229bc78d4e923613021
Account5PK = 4f056dbc4b703cdf426677f083959780177a390c3b0241fd1f2f96399e360d02
Account6PK = 4df8f59ec864ab75f5cceac05e9e39ce4b80e6f912c046e6cf0b3837408565fb
Account7PK = a8b59372f73b799392b5a5ce7c23c76eaa4efe3215c9523e9d42889d71afedcb
Account8PK = fef2b7a804a341d573d2d74cdbae1bbba0729f5bb31c24a987e38ca4367551b6
Account9PK = 50025bc632ab573e961331c5b6e69902957258dc5e73169128aea36717996b1f
Account10PK = fbe033a7391aec55d198eabfc564db16d22ad113157c4e6a6c1041cc0ac0df0b
Account11PK = b2ea9340fe65833abb5948860fec9ac0635dfede735adabf46d97b960e7bc8f4
Account12PK = f0f1ec01f2a8e4ee6e0fdd1ca253c3f5e71bf29ce6b226dc0852b924f7c155e3
[env.default]
HostHTTP = http://127.0.0.1
HostWS = ws://127.0.0.1
PortHTTP = 8545
PortWS = 8545
ChainID = 1
BlockTimeSecs = 1
[env.ganache]
HostHTTP = http://127.0.0.1
HostWS = ws://127.0.0.1
PortHTTP = 8545
PortWS = 8545
ChainID = 1337
BlockTimeSecs = 1
[env.goerli]
HostHTTP = https://goerli.infura.io/v3
HostWS = wss://goerli.infura.io/ws/v3
PortHTTP = 8545
PortWS = 8545
ChainID = 5
ProjectID = <set in user.properties>
BlockTimeSecs = 15
[env.sepolia]
HostHTTP = https://eth-sepolia.g.alchemy.com/v2
HostWS = wss://eth-sepolia.g.alchemy.com/v2
PortHTTP = 8545
PortWS = 8545
ChainID = 11155111
APIKey = <set in user.properties>
BlockTimeSecs = 15
[env.arbitrum.sepolia]
HostHTTP = https://arb-sepolia.g.alchemy.com/v2
HostWS = wss://arb-sepolia.g.alchemy.com/v2
PortHTTP = 8545
PortWS = 8545
ChainID = 421614
APIKey = <set in user.properties>
BlockTimeSecs = 15
L1NodeHostHTTP = https://eth-sepolia.g.alchemy.com/v2
L1NodeHostWS = wss://eth-sepolia.g.alchemy.com/v2
L1NodePortHTTP = 8545
L1NodePortWS = 8545
[env.optimism.sepolia]
HostHTTP = https://sepolia.optimism.io
HostWS = wss://sepolia.optimism.io
PortHTTP = 443
PortWS = 443
ChainID = 11155420
BlockTimeSecs = 15
L1NodeHostHTTP = https://eth-sepolia.g.alchemy.com/v2
L1NodeHostWS = wss://eth-sepolia.g.alchemy.com/v2
L1NodePortHTTP = 8545
L1NodePortWS = 8545
[env.ten.sepolia]
HostHTTP = https://rpc.testnet.ten.xyz
HostWS = wss://rpc.testnet.ten.xyz
PortHTTP = 443
PortWS = 81
ChainID = 443
BlockTimeSecs = 1
SequencerAddress = 0xc83352C53c7F60fF6740BC34ca311587A9A5db8f
Validator1Address = 0xBD0D613bCbDbcC93abE025117564cc4435896A5F
Validator2Address = 0xa00E66438600c5D104f842cBAf0D7E09fcB76555
L1DeployerAddress = 0x5555E184dDC7de1A1fD0FF237CcA77338cE7162D
L2FaucetAddress = 0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77
FaucetURL = http://sepolia-testnet-faucet.uksouth.azurecontainer.io
L1Abstraction = TenL1Sepolia
L1NodeHostHTTP = https://eth-sepolia.g.alchemy.com/v2
L1NodeHostWS = wss://eth-sepolia.g.alchemy.com/v2
L1NodePortHTTP = 8545
L1NodePortWS = 8545
L2NodeHost = erpc.testnet.ten.xyz
L2NodePortHTTP = 80
L2NodePortWS = 81
L1FundedAccountPK = <set in user.properties>
L2GasPaymentAccountPK = <set in user.properties>
[env.ten.uat]
HostHTTP = https://rpc.uat-testnet.ten.xyz
HostWS = wss://rpc.uat-testnet.ten.xyz
PortHTTP = 443
PortWS = 443
ChainID = 443
BlockTimeSecs = 1
SequencerAddress = 0xEEd55Ff2853b004A82D2b4CE97B038D712216dCa
Validator1Address = 0x53D3015D0D8Fc5Ad68484866Bb9Ae60ebb5277cb
Validator2Address = 0x274Ab98679e3fb2e05a1E22c6A6fBF8fbe6515B1
L1DeployerAddress = 0xD35CE8575dC1816e560E16534eB7ea5D368255B7
L2FaucetAddress = 0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77
FaucetURL = http://uat-testnet-faucet.uksouth.azurecontainer.io
# uncomment if using sepolia as the L1
#L1Abstraction = TenL1Sepolia
#L1NodeHostHTTP = https://eth-sepolia.g.alchemy.com/v2
#L1NodeHostWS = wss://eth-sepolia.g.alchemy.com/v2
#L1NodePortHTTP = 8545
#L1NodePortWS = 8545
L1Abstraction = TenL1Geth
L1NodeHostHTTP = http://uat-testnet-eth2network.uksouth.cloudapp.azure.com
L1NodeHostWS = ws://uat-testnet-eth2network.uksouth.cloudapp.azure.com
L1NodePortHTTP = 8025
L1NodePortWS = 9000
L2NodeHost = erpc.uat-testnet.ten.xyz
L2NodePortHTTP = 80
L2NodePortWS = 81
L1FundedAccountPK = <set in user.properties>
L2GasPaymentAccountPK = <set in user.properties>
[env.ten.dev]
HostHTTP = https://rpc.dev-testnet.ten.xyz
HostWS = wss://rpc.dev-testnet.ten.xyz
PortHTTP = 443
PortWS = 443
ChainID = 443
BlockTimeSecs = 1
SequencerAddress =
Validator1Address =
Validator2Address =
L1DeployerAddress =
L2FaucetAddress = 0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77
FaucetURL = http://dev-testnet-faucet.uksouth.azurecontainer.io
L1Abstraction = TenL1Geth
L1NodeHostHTTP = http://dev-testnet-eth2network.uksouth.cloudapp.azure.com
L1NodeHostWS = ws://dev-testnet-eth2network.uksouth.cloudapp.azure.com
L1NodePortHTTP = 8025
L1NodePortWS = 9000
L2NodeHost = erpc.dev-testnet.ten.xyz
L2NodePortHTTP = 80
L2NodePortWS = 81
L1FundedAccountPK = <set in user.properties>
L2GasPaymentAccountPK = <set in user.properties>
[env.ten.local]
HostHTTP = http://127.0.0.1
HostWS = ws://127.0.0.1
HostHTTPDockerNetwork = http://gateway
HostWSDockerNetwork = ws://gateway
PortHTTP = 3000
PortWS = 3001
ChainID = 443
BlockTimeSecs = 1
SequencerAddress =
Validator1Address =
Validator2Address =
L1DeployerAddress =
L2FaucetAddress = 0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77
FaucetURL = http://127.0.0.1:99
FaucetURLDockerNetwork = http://faucet:99
NodeHostDockerNetwork = validator-host
L1Abstraction = TenL1Geth
L1NodeHostHTTP = http://127.0.0.1
L1NodeHostWS = ws://127.0.0.1
L1NodePortHTTP = 8025
L1NodePortWS = 9000
L2NodeHost = 127.0.0.1
L2NodePortHTTP = 13010
L2NodePortWS = 13011
L1FundedAccountPK = <set in user.properties>
L2GasPaymentAccountPK = <set in user.properties>
[env.ten.sim]
HostHTTP = http://127.0.0.1
HostWS = ws://127.0.0.1
HostHTTPDockerNetwork = http://host.docker.internal
HostWSDockerNetwork = ws://host.docker.internal
PortHTTP = 11180
PortWS = 11181
ChainID = 443
BlockTimeSecs = 1
SequencerAddress =
Validator1Address =
Validator2Address =
L1DeployerAddress =
L2FaucetAddress = 0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77
FaucetURL = http://127.0.0.1:99
FaucetURLDockerNetwork = http://host.docker.internal:99
NodeHostDockerNetwork = host.docker.internal
L1Abstraction = TenL1Geth
L1NodeHostHTTP = http://127.0.0.1
L1NodeHostWS = ws://127.0.0.1
L1NodePortHTTP = 25000
L1NodePortWS = 17100
L2NodeHost = 127.0.0.1
L2NodePortHTTP = 25801
L2NodePortWS = 25901
L1FundedAccountPK = <set in user.properties>
L2GasPaymentAccountPK = <set in user.properties>