Skip to content

Commit e839c9f

Browse files
authored
chore: Test run evm networks (#312)
* chore: test run evm networks * chore: add accurate block times and fix typos
1 parent a2bc23b commit e839c9f

20 files changed

+252
-15
lines changed

examples/config/networks/arbitrum_sepolia.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type_": "rpc",
88
"url": {
99
"type": "plain",
10-
"value": "https://sepolia-rollup.arbitrum.io/rpc"
10+
"value": "https://arbitrum-sepolia-rpc.publicnode.com"
1111
},
1212
"weight": 100
1313
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"network_type": "EVM",
3+
"slug": "avalanche_c_chain",
4+
"name": "Avalanche C-Chain",
5+
"rpc_urls": [
6+
{
7+
"type_": "rpc",
8+
"url": {
9+
"type": "plain",
10+
"value": "https://api.avax.network/ext/bc/C/rpc"
11+
},
12+
"weight": 100
13+
}
14+
],
15+
"chain_id": 43114,
16+
"block_time_ms": 2000,
17+
"confirmation_blocks": 12,
18+
"cron_schedule": "0 */1 * * * *",
19+
"store_blocks": false
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"network_type": "EVM",
3+
"slug": "avalanche_fuji",
4+
"name": "Avalanche Fuji",
5+
"rpc_urls": [
6+
{
7+
"type_": "rpc",
8+
"url": {
9+
"type": "plain",
10+
"value": "https://api.avax-test.network/ext/bc/C/rpc"
11+
},
12+
"weight": 100
13+
}
14+
],
15+
"chain_id": 43113,
16+
"block_time_ms": 2000,
17+
"confirmation_blocks": 12,
18+
"cron_schedule": "0 */1 * * * *",
19+
"store_blocks": false
20+
}

examples/config/networks/base.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
],
1515
"chain_id": 8453,
1616
"block_time_ms": 2000,
17-
"confirmation_blocks": 12,
17+
"confirmation_blocks": 3,
1818
"cron_schedule": "0 */1 * * * *",
19-
"max_past_blocks": 43,
2019
"store_blocks": false
2120
}

examples/config/networks/base_sepolia.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
],
1515
"chain_id": 84532,
1616
"block_time_ms": 2000,
17-
"confirmation_blocks": 12,
17+
"confirmation_blocks": 3,
1818
"cron_schedule": "0 */1 * * * *",
19-
"max_past_blocks": 43,
2019
"store_blocks": false
2120
}

examples/config/networks/bsc_mainnet.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"network_type": "EVM",
3-
"slug": "bsc",
3+
"slug": "bsc_mainnet",
44
"name": "Binance BSC",
55
"rpc_urls": [
66
{
77
"type_": "rpc",
88
"url": {
99
"type": "plain",
10-
"value": "https://bsc-dataseed.bnbchain.org"
10+
"value": "https://bsc-dataseed1.bnbchain.org"
1111
},
1212
"weight": 100
1313
}

examples/config/networks/bsc_testnet.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"network_type": "EVM",
3-
"slug": "bsctest",
3+
"slug": "bsc_testnet",
44
"name": "BSC Testnet",
55
"rpc_urls": [
66
{
77
"type_": "rpc",
88
"url": {
99
"type": "plain",
10-
"value": "https://bsc-testnet-dataseed.bnbchain.org"
10+
"value": "https://bsc-testnet-rpc.publicnode.com"
1111
},
1212
"weight": 100
1313
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"network_type": "EVM",
3+
"slug": "celo_alfajores",
4+
"name": "Celo Alfajores Testnet",
5+
"rpc_urls": [
6+
{
7+
"type_": "rpc",
8+
"url": {
9+
"type": "plain",
10+
"value": "https://alfajores-forno.celo-testnet.org"
11+
},
12+
"weight": 100
13+
}
14+
],
15+
"chain_id": 44787,
16+
"block_time_ms": 5000,
17+
"confirmation_blocks": 3,
18+
"cron_schedule": "0 */1 * * * *",
19+
"store_blocks": false
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"network_type": "EVM",
3+
"slug": "celo_mainnet",
4+
"name": "Celo Mainnet",
5+
"rpc_urls": [
6+
{
7+
"type_": "rpc",
8+
"url": {
9+
"type": "plain",
10+
"value": "https://forno.celo.org"
11+
},
12+
"weight": 100
13+
}
14+
],
15+
"chain_id": 42220,
16+
"block_time_ms": 5000,
17+
"confirmation_blocks": 3,
18+
"cron_schedule": "0 */1 * * * *",
19+
"store_blocks": false
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"network_type": "EVM",
3+
"slug": "linea_mainnet",
4+
"name": "Linea Mainnet",
5+
"rpc_urls": [
6+
{
7+
"type_": "rpc",
8+
"url": {
9+
"type": "plain",
10+
"value": "https://rpc.linea.build"
11+
},
12+
"weight": 100
13+
}
14+
],
15+
"chain_id": 59144,
16+
"block_time_ms": 2000,
17+
"confirmation_blocks": 3,
18+
"cron_schedule": "0 */1 * * * *",
19+
"store_blocks": false
20+
}

0 commit comments

Comments
 (0)