@sentio/cli 3.8.0-rc.1 → 3.8.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +3 -4
- package/package.json +1 -1
- package/src/network.ts +3 -4
package/lib/index.js
CHANGED
|
@@ -139195,14 +139195,13 @@ var TESTNET_CONFIG = {
|
|
|
139195
139195
|
chainId: 7892101,
|
|
139196
139196
|
rpcUrl: "https://sentio-testnet.rpc.sentio.xyz",
|
|
139197
139197
|
explorerUrl: "https://testnet-explorer.sentio.xyz",
|
|
139198
|
-
addressBookAddress: "
|
|
139198
|
+
addressBookAddress: "0x092d795d42e23ecba5cc66927972be5c9980effb"
|
|
139199
139199
|
};
|
|
139200
139200
|
var DEVNET_CONFIG = {
|
|
139201
139201
|
chainId: 7892201,
|
|
139202
|
-
rpcUrl: "https://sentio-devnet.rpc.sentio.xyz",
|
|
139202
|
+
rpcUrl: "https://sentio-devnet.test-rpc.sentio.xyz",
|
|
139203
139203
|
explorerUrl: "https://devnet-explorer.sentio.xyz",
|
|
139204
|
-
|
|
139205
|
-
addressBookAddress: "0x0000000000000000000000000000000000000000"
|
|
139204
|
+
addressBookAddress: "0xCfCE965429602b02b453477Cd8Bc7FEd5E8ffc14"
|
|
139206
139205
|
};
|
|
139207
139206
|
function getSentioNetworkConfig(network) {
|
|
139208
139207
|
if (network === "testnet" || network === "7892101") {
|
package/package.json
CHANGED
package/src/network.ts
CHANGED
|
@@ -17,15 +17,14 @@ const TESTNET_CONFIG: SentioNetworkConfig = {
|
|
|
17
17
|
chainId: 7892101,
|
|
18
18
|
rpcUrl: 'https://sentio-testnet.rpc.sentio.xyz',
|
|
19
19
|
explorerUrl: 'https://testnet-explorer.sentio.xyz',
|
|
20
|
-
addressBookAddress: '
|
|
20
|
+
addressBookAddress: '0x092d795d42e23ecba5cc66927972be5c9980effb'
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
const DEVNET_CONFIG: SentioNetworkConfig = {
|
|
24
24
|
chainId: 7892201,
|
|
25
|
-
rpcUrl: 'https://sentio-devnet.rpc.sentio.xyz',
|
|
25
|
+
rpcUrl: 'https://sentio-devnet.test-rpc.sentio.xyz',
|
|
26
26
|
explorerUrl: 'https://devnet-explorer.sentio.xyz',
|
|
27
|
-
|
|
28
|
-
addressBookAddress: '0x0000000000000000000000000000000000000000'
|
|
27
|
+
addressBookAddress: '0xCfCE965429602b02b453477Cd8Bc7FEd5E8ffc14'
|
|
29
28
|
}
|
|
30
29
|
|
|
31
30
|
export function getSentioNetworkConfig(network: string): SentioNetworkConfig {
|