@tria-sdk/constants 1.0.26 → 1.0.27

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.
@@ -59,6 +59,10 @@ export const AA_SUPPORTED_EVM_CHAINS = [
59
59
  "MUMBAI",
60
60
  // "MANTLE",
61
61
  sepolia,
62
+ "OPTIMISM",
63
+ "ARBITRUM",
64
+ "AVALANCHE",
65
+ "MANTLE",
62
66
  ];
63
67
  export const ALLCHAINS = [
64
68
  "ETH",
package/dist/src/txn.js CHANGED
@@ -199,7 +199,7 @@ export const rpcUrls = {
199
199
  [zkLinkTestnet]: "https://goerli.rpc.zklink.io",
200
200
  [bitlayerTestnet]: "https://testnet-rpc.bitlayer.org",
201
201
  [neoxTestnet]: "https://neoxseed1.ngd.network",
202
- [vanarTestnet]: "https://rpc-vanguard.vanarchain.com",
202
+ [vanarTestnet]: "http://rpc-partners-vanguard.vanarchain.com", // "https://rpc-vanguard.vanarchain.com",
203
203
  };
204
204
  export const chainNameToChainId = {
205
205
  MUMBAI: 80001,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tria-sdk/constants",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/chains.ts CHANGED
@@ -71,6 +71,10 @@ export const AA_SUPPORTED_EVM_CHAINS = [
71
71
  "MUMBAI",
72
72
  // "MANTLE",
73
73
  sepolia,
74
+ "OPTIMISM",
75
+ "ARBITRUM",
76
+ "AVALANCHE",
77
+ "MANTLE",
74
78
  ];
75
79
 
76
80
  export const ALLCHAINS = [
package/src/txn.ts CHANGED
@@ -222,7 +222,7 @@ export const rpcUrls = {
222
222
  [zkLinkTestnet]: "https://goerli.rpc.zklink.io",
223
223
  [bitlayerTestnet]: "https://testnet-rpc.bitlayer.org",
224
224
  [neoxTestnet]: "https://neoxseed1.ngd.network",
225
- [vanarTestnet]: "https://rpc-vanguard.vanarchain.com",
225
+ [vanarTestnet]: "http://rpc-partners-vanguard.vanarchain.com", // "https://rpc-vanguard.vanarchain.com",
226
226
  };
227
227
 
228
228
  export const chainNameToChainId = {