Skip to content

Commit df1090d

Browse files
deploy price feed and entropy on spiderman (#3013)
* deploy price feed on spiderman * deploy entropy * nits new line
1 parent 5aebc70 commit df1090d

File tree

7 files changed

+33
-5
lines changed

7 files changed

+33
-5
lines changed

contract_manager/scripts/deploy_evm_entropy_contracts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
topupAccountsIfNecessary,
2222
DefaultAddresses,
2323
} from "./common";
24-
import { getOrDeployExecutorContract } from "./deploy_evm_executor";
24+
import { getOrDeployExecutorContract } from "./deploy_evm_executor_contracts";
2525

2626
interface DeploymentConfig extends BaseDeployConfig {
2727
type: DeploymentType;

contract_manager/store/chains/EvmChains.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1300,5 +1300,12 @@
13001300
"rpcUrl": "https://rpc.testnet.fluent.xyz/",
13011301
"networkId": 20994,
13021302
"type": "EvmChain"
1303+
},
1304+
{
1305+
"id": "spiderman",
1306+
"mainnet": true,
1307+
"rpcUrl": "https://rpc-mainnet.spiderman.com/rpc/",
1308+
"networkId": 143,
1309+
"type": "EvmChain"
13031310
}
13041311
]

contract_manager/store/contracts/EvmEntropyContracts.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,10 @@
188188
"chain": "hyperevm_testnet",
189189
"address": "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
190190
"type": "EvmEntropyContract"
191+
},
192+
{
193+
"chain": "spiderman",
194+
"address": "0xD458261E832415CFd3BAE5E416FdF3230ce6F134",
195+
"type": "EvmEntropyContract"
191196
}
192-
]
197+
]

contract_manager/store/contracts/EvmExecutorContracts.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,5 +218,10 @@
218218
"chain": "ethereal_testnet_v2",
219219
"address": "0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc",
220220
"type": "EvmExecutorContract"
221+
},
222+
{
223+
"chain": "spiderman",
224+
"address": "0x26DD80569a8B23768A1d80869Ed7339e07595E85",
225+
"type": "EvmExecutorContract"
221226
}
222-
]
227+
]

contract_manager/store/contracts/EvmPriceFeedContracts.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,5 +858,10 @@
858858
"chain": "fluent_testnet",
859859
"address": "0x2880aB155794e7179c9eE2e38200202908C17B43",
860860
"type": "EvmPriceFeedContract"
861+
},
862+
{
863+
"chain": "spiderman",
864+
"address": "0x2880aB155794e7179c9eE2e38200202908C17B43",
865+
"type": "EvmPriceFeedContract"
861866
}
862-
]
867+
]

contract_manager/store/contracts/EvmWormholeContracts.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,5 +863,10 @@
863863
"chain": "fluent_testnet",
864864
"address": "0xb27e5ca259702f209a29225d0eDdC131039C9933",
865865
"type": "EvmWormholeContract"
866+
},
867+
{
868+
"chain": "spiderman",
869+
"address": "0xb27e5ca259702f209a29225d0eDdC131039C9933",
870+
"type": "EvmWormholeContract"
866871
}
867-
]
872+
]

governance/xc_admin/packages/xc_admin_common/src/chains.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ export const RECEIVER_CHAINS = {
115115
mezo: 60084,
116116
iota_sui_mainnet: 60085,
117117
camp_network: 60086,
118+
spiderman: 60087,
118119

119120
// Testnets as a separate chain ids (to use stable data sources and governance for them)
120121
injective_testnet: 60013,

0 commit comments

Comments
 (0)