Skip to content

Commit 07e7fd7

Browse files
committed
update deployment chain
1 parent 317cdc7 commit 07e7fd7

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

packages/core/src/networks.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ export interface Network {
1010

1111
export const NETWORKS: Record<string, Network> = {
1212
testnet: {
13-
name: "SKALE Bite Sandbox",
14-
chainId: 103698795,
15-
rpcUrl: "https://base-sepolia-testnet.skalenodes.com/v1/bite-v2-sandbox",
16-
chainName: "skale-bite-sandbox",
17-
explorerUrl: "https://base-sepolia-testnet-explorer.skalenodes.com:10032",
13+
name: "SKALE Sandbox",
14+
chainId: 196243392,
15+
rpcUrl: "https://base-sepolia-testnet.skalenodes.com/v1/vigilant-snappy-arcturus",
16+
chainName: "skale-sandbox",
17+
explorerUrl: "https://vigilant-snappy-arcturus.base-sepolia-testnet-explorer.skalenodes.com",
1818
nativeCurrency: { name: "CREDITS", symbol: "CREDITS", decimals: 18 },
1919
registryAddress: "0x18B62f70ddaA2666FA5933a7b6Ff3943e69ca690",
2020
},

skills/smartclaws-producer/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ This creates `~/.smartclaws/` with config and a wallet. Expected output:
5050

5151
```
5252
Config created at ~/.smartclaws/config.json
53-
Network: SKALE Bite Sandbox
54-
RPC URL: https://base-sepolia-testnet.skalenodes.com/v1/bite-v2-sandbox
55-
Chain ID: 103698795
53+
Network: SKALE Sandbox
54+
RPC URL: https://base-sepolia-testnet.skalenodes.com/v1/vigilant-snappy-arcturus
55+
Chain ID: 196243392
5656
Contract: 0x18B62f70ddaA2666FA5933a7b6Ff3943e69ca690
5757
Wallet: 0xAbC123... (generated)
5858
```

skills/smartclaws-reader/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Expected output:
4747

4848
```
4949
Config created at ~/.smartclaws/config.json
50-
Network: SKALE Bite Sandbox
51-
RPC URL: https://base-sepolia-testnet.skalenodes.com/v1/bite-v2-sandbox
52-
Chain ID: 103698795
50+
Network: SKALE Sandbox
51+
RPC URL: https://base-sepolia-testnet.skalenodes.com/v1/vigilant-snappy-arcturus
52+
Chain ID: 196243392
5353
Contract: 0x18B62f70ddaA2666FA5933a7b6Ff3943e69ca690
5454
Wallet: 0xAbC123... (generated)
5555
```

smart-contracts/hardhat.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export default defineConfig({
1515
},
1616
},
1717
chainDescriptors: {
18-
103698795: {
19-
name: "SKALE Bite Sandbox",
18+
196243392: {
19+
name: "SKALE Sandbox",
2020
chainType: "generic",
2121
blockExplorers: {
2222
etherscan: {
23-
url: "https://base-sepolia-testnet-explorer.skalenodes.com",
23+
url: "https://vigilant-snappy-arcturus.base-sepolia-testnet-explorer.skalenodes.com",
2424
apiUrl:
25-
"https://base-sepolia-testnet-explorer.skalenodes.com:10032/api",
25+
"https://vigilant-snappy-arcturus.base-sepolia-testnet-explorer.skalenodes.com/api",
2626
},
2727
},
2828
},
@@ -37,7 +37,7 @@ export default defineConfig({
3737
? {
3838
skaleTestnet: {
3939
type: "http" as const,
40-
chainId: 103698795,
40+
chainId: 196243392,
4141
url: process.env.SKALE_RPC_URL,
4242
accounts: process.env.DEPLOYER_PRIVATE_KEY
4343
? [process.env.DEPLOYER_PRIVATE_KEY]

0 commit comments

Comments
 (0)