@sentio/cli 3.6.1 → 3.6.2-rc.1

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 CHANGED
@@ -139188,9 +139188,9 @@ var wordlists2 = {
139188
139188
  import readline2 from "readline";
139189
139189
  var TESTNET_CONFIG = {
139190
139190
  chainId: 7892101,
139191
- rpcUrl: "https://testnet.sentio.xyz",
139191
+ rpcUrl: "https://sentio-testnet.rpc.sentio.xyz",
139192
139192
  explorerUrl: "https://testnet-explorer.sentio.xyz",
139193
- addressBookAddress: "0x17d5aF5Ed9C2558B802bEfcCc5a94C36dE95BB0B"
139193
+ addressBookAddress: "0x11cDDF46f16925aa630Af9D5158028E56309868f"
139194
139194
  };
139195
139195
  function getSentioNetworkConfig(network) {
139196
139196
  if (network === "testnet" || network === "7892101") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/cli",
3
- "version": "3.6.1",
3
+ "version": "3.6.2-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
package/src/network.ts CHANGED
@@ -15,9 +15,9 @@ interface SentioNetworkConfig {
15
15
 
16
16
  const TESTNET_CONFIG: SentioNetworkConfig = {
17
17
  chainId: 7892101,
18
- rpcUrl: 'https://testnet.sentio.xyz',
18
+ rpcUrl: 'https://sentio-testnet.rpc.sentio.xyz',
19
19
  explorerUrl: 'https://testnet-explorer.sentio.xyz',
20
- addressBookAddress: '0x17d5aF5Ed9C2558B802bEfcCc5a94C36dE95BB0B'
20
+ addressBookAddress: '0x11cDDF46f16925aa630Af9D5158028E56309868f'
21
21
  }
22
22
 
23
23
  export function getSentioNetworkConfig(network: string): SentioNetworkConfig {