genlayer-js 0.10.0 → 0.11.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/CHANGELOG.md +9 -0
- package/dist/chains/index.cjs +4 -2
- package/dist/chains/index.d.cts +1 -1
- package/dist/chains/index.d.ts +1 -1
- package/dist/chains/index.js +3 -1
- package/dist/{chunk-4FVQ3G7J.js → chunk-GEN4SJ6K.js} +4011 -9
- package/dist/{chunk-SMCXL465.cjs → chunk-ZKBMABRA.cjs} +4012 -10
- package/dist/{index-B52a6DSr.d.cts → index-Bw-kn7CF.d.cts} +5 -2
- package/dist/{index-DNvW8slT.d.ts → index-DCzgdyMa.d.ts} +5 -2
- package/dist/index.cjs +14 -4025
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -4013
- package/package.json +1 -1
- package/src/chains/index.ts +1 -0
- package/src/chains/testnetAsimov.ts +898 -910
|
@@ -2,12 +2,15 @@ import { G as GenLayerChain } from './chains-BYSCF33g.cjs';
|
|
|
2
2
|
|
|
3
3
|
declare const localnet: GenLayerChain;
|
|
4
4
|
|
|
5
|
+
declare const studionet: GenLayerChain;
|
|
6
|
+
|
|
5
7
|
declare const testnetAsimov: GenLayerChain;
|
|
6
8
|
|
|
7
9
|
declare const index_localnet: typeof localnet;
|
|
10
|
+
declare const index_studionet: typeof studionet;
|
|
8
11
|
declare const index_testnetAsimov: typeof testnetAsimov;
|
|
9
12
|
declare namespace index {
|
|
10
|
-
export { index_localnet as localnet, index_testnetAsimov as testnetAsimov };
|
|
13
|
+
export { index_localnet as localnet, index_studionet as studionet, index_testnetAsimov as testnetAsimov };
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
export { index as i, localnet as l, testnetAsimov as t };
|
|
16
|
+
export { index as i, localnet as l, studionet as s, testnetAsimov as t };
|
|
@@ -2,12 +2,15 @@ import { G as GenLayerChain } from './chains-BYSCF33g.js';
|
|
|
2
2
|
|
|
3
3
|
declare const localnet: GenLayerChain;
|
|
4
4
|
|
|
5
|
+
declare const studionet: GenLayerChain;
|
|
6
|
+
|
|
5
7
|
declare const testnetAsimov: GenLayerChain;
|
|
6
8
|
|
|
7
9
|
declare const index_localnet: typeof localnet;
|
|
10
|
+
declare const index_studionet: typeof studionet;
|
|
8
11
|
declare const index_testnetAsimov: typeof testnetAsimov;
|
|
9
12
|
declare namespace index {
|
|
10
|
-
export { index_localnet as localnet, index_testnetAsimov as testnetAsimov };
|
|
13
|
+
export { index_localnet as localnet, index_studionet as studionet, index_testnetAsimov as testnetAsimov };
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
export { index as i, localnet as l, testnetAsimov as t };
|
|
16
|
+
export { index as i, localnet as l, studionet as s, testnetAsimov as t };
|