Browse Source

fix(contract-manager) Rename sonic test (#2493)

* fix(contract-manager) Rename sonic test

* update
Aditya Arora 8 months ago
parent
commit
aa8a022447

+ 27 - 9
apps/entropy-debugger/src/store/entropy-deployments.ts

@@ -9,7 +9,7 @@ export type EntropyDeployment = {
 };
 
 export const EntropyDeployments = {
-  "berachain-mainnet": {
+  berachain: {
     address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
     network: "mainnet",
     explorer: "https://berascan.com/address/$ADDRESS",
@@ -369,7 +369,7 @@ export const EntropyDeployments = {
     rpc: "https://api.testnet.abs.xyz",
     nativeCurrency: "ETH",
   },
-  "sonic-fantom-testnet": {
+  "sonic-blaze-testnet": {
     address: "0xebe57e8045f2f230872523bbff7374986e45c486",
     explorer: "https://blaze.soniclabs.com/address/$ADDRESS",
     delay: "",
@@ -396,23 +396,23 @@ export const EntropyDeployments = {
     rpc: "https://rpc.soniclabs.com",
     nativeCurrency: "S",
   },
-  "monad-devnet": {
-    address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
-    explorer: "https://brightstar-884.devnet1.monad.xyz/address/$ADDRESS",
+  "story-testnet": {
+    address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+    explorer: "https://aeneid.storyscan.xyz/address/$ADDRESS",
     delay: "",
     gasLimit: "500K",
     network: "testnet",
-    nativeCurrency: "MON",
-    rpc: "https://rpc.devnet1.monad.xyz",
+    rpc: "https://aeneid.storyrpc.io",
+    nativeCurrency: "IP",
   },
   "monad-testnet": {
-    address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
+    address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
     explorer: "https://testnet.monadexplorer.com/address/$ADDRESS",
     delay: "",
     gasLimit: "500K",
     network: "testnet",
-    nativeCurrency: "MON",
     rpc: "https://testnet-rpc.monad.xyz",
+    nativeCurrency: "MON",
   },
   abstract: {
     address: "0x5a4a369F4db5df2054994AF031b7b23949b98c0e",
@@ -423,6 +423,24 @@ export const EntropyDeployments = {
     rpc: "https://api.mainnet.abs.xyz",
     nativeCurrency: "ETH",
   },
+  story: {
+    address: "0xdF21D137Aadc95588205586636710ca2890538d5",
+    explorer: "https://storyscan.xyz/address/$ADDRESS",
+    delay: "",
+    gasLimit: "500K",
+    network: "mainnet",
+    rpc: "https://mainnet.storyrpc.io",
+    nativeCurrency: "IP",
+  },
+  "berachain-bepolia": {
+    address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+    explorer: "https://bepolia.beratrail.io/address/$ADDRESS",
+    delay: "",
+    gasLimit: "500K",
+    network: "testnet",
+    rpc: "https://bepolia.rpc.berachain.com",
+    nativeCurrency: "BERA",
+  },
 } as const satisfies Record<string, EntropyDeployment>;
 
 export const isValidDeployment = (

+ 1 - 1
contract_manager/store/chains/EvmChains.yaml

@@ -804,7 +804,7 @@
   rpcUrl: https://testnet-rpc.eh-dev.app
   networkId: 16182
   type: EvmChain
-- id: fantom_sonic_devnet
+- id: sonic_blaze_testnet
   mainnet: false
   rpcUrl: https://rpc.blaze.soniclabs.com
   networkId: 57054

+ 1 - 1
contract_manager/store/contracts/EvmEntropyContracts.yaml

@@ -124,7 +124,7 @@
 - chain: happy_bird_song_ends_with_tio
   address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
   type: EvmEntropyContract
-- chain: fantom_sonic_devnet
+- chain: sonic_blaze_testnet
   address: "0xEbe57e8045F2F230872523bbff7374986E45C486"
   type: EvmEntropyContract
 - chain: unichain_sepolia

+ 1 - 1
contract_manager/store/contracts/EvmPriceFeedContracts.yaml

@@ -445,7 +445,7 @@
 - chain: eventum_testnet
   address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
   type: EvmPriceFeedContract
-- chain: fantom_sonic_devnet
+- chain: sonic_blaze_testnet
   address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
   type: EvmPriceFeedContract
 - chain: happy_bird_song_ends_with_tio

+ 1 - 1
contract_manager/store/contracts/EvmWormholeContracts.yaml

@@ -439,7 +439,7 @@
 - chain: eventum_testnet
   address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
   type: EvmWormholeContract
-- chain: fantom_sonic_devnet
+- chain: sonic_blaze_testnet
   address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
   type: EvmWormholeContract
 - chain: happy_bird_song_ends_with_tio

+ 1 - 1
governance/xc_admin/packages/xc_admin_common/src/chains.ts

@@ -225,7 +225,7 @@ export const RECEIVER_CHAINS = {
   happy_bird_song_ends_with_tio: 50108,
   hyperevm_testnet: 50109,
   eventum_testnet: 50110,
-  fantom_sonic_devnet: 50111,
+  sonic_blaze_testnet: 50111,
   movement_bardock_testnet: 50112,
   story_testnet: 50113,
   coredao_testnet_v2: 50114,

+ 1 - 1
target_chains/ethereum/sdk/js/README.md

@@ -1,6 +1,6 @@
 # Pyth EVM JS (DEPRECATED)
 
-> [!WARNING] 
+> [!WARNING]
 > **DEPRECATION NOTICE:** This package is deprecated and no longer maintained. Please use [hermes-client](https://github.com/pyth-network/pyth-crosschain/tree/main/apps/hermes/client/js) instead.
 
 [Pyth](https://pyth.network/) provides real-time pricing data in a variety of asset classes, including cryptocurrency,

+ 1 - 1
target_chains/ethereum/sdk/js/src/index.ts

@@ -106,7 +106,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
   eos_testnet: "0x0708325268dF9F66270F1401206434524814508b",
   eventum_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
   evmos_testnet: "0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E",
-  fantom_sonic_devnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
+  sonic_blaze_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
   fantom_sonic_testnet: "0x96124d1F6E44FfDf1fb5D6d74BB2DE1B7Fbe7376",
   fantom_testnet: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
   filecoin_calibration: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",