@tria-sdk/constants 1.0.49 → 1.0.50
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/dist/src/chains.d.ts +1 -0
- package/package.json +1 -1
- package/src/chains.ts +1 -0
- package/tsconfig.json +1 -1
package/dist/src/chains.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare const skaleTestnet: string;
|
|
|
15
15
|
export type ZKLINK = "ZKLINK-NOVA";
|
|
16
16
|
export type ZKLINK_TESTNET = "ZKLINK-NOVA-TESTNET";
|
|
17
17
|
export type BITLAYER_TESTNET = "BITLAYER-TESTNET";
|
|
18
|
+
export type BITLAYER_MAINNET = "BITLAYER-MAINNET";
|
|
18
19
|
export type NEOX_TESTNET = "NEOX-TESTNET";
|
|
19
20
|
export type SEPOLIA = "SEPOLIA";
|
|
20
21
|
export type AMOY = "AMOY";
|
package/package.json
CHANGED
package/src/chains.ts
CHANGED
|
@@ -17,6 +17,7 @@ export const skaleTestnet: string = "SKALE-TESTNET";
|
|
|
17
17
|
export type ZKLINK = "ZKLINK-NOVA";
|
|
18
18
|
export type ZKLINK_TESTNET = "ZKLINK-NOVA-TESTNET";
|
|
19
19
|
export type BITLAYER_TESTNET = "BITLAYER-TESTNET";
|
|
20
|
+
export type BITLAYER_MAINNET = "BITLAYER-MAINNET";
|
|
20
21
|
export type NEOX_TESTNET = "NEOX-TESTNET";
|
|
21
22
|
export type SEPOLIA = "SEPOLIA";
|
|
22
23
|
export type AMOY = "AMOY";
|