@atomiqlabs/sdk 8.7.1 → 8.7.2
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/SmartChainAssets.d.ts +20 -0
- package/dist/SmartChainAssets.js +20 -0
- package/package.json +1 -1
- package/src/SmartChainAssets.ts +20 -0
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
* @category Tokens
|
|
4
4
|
*/
|
|
5
5
|
export declare const SmartChainAssets: {
|
|
6
|
+
readonly _TESTNET_strkBTC: {
|
|
7
|
+
readonly pricing: {
|
|
8
|
+
readonly binancePair: "$fixed-100000000";
|
|
9
|
+
readonly okxPair: "$fixed-100000000";
|
|
10
|
+
readonly coinGeckoCoinId: "$fixed-100000000";
|
|
11
|
+
readonly coinPaprikaCoinId: "$fixed-100000000";
|
|
12
|
+
readonly krakenPair: "$fixed-100000000";
|
|
13
|
+
};
|
|
14
|
+
readonly name: "strkBTC (dev)";
|
|
15
|
+
};
|
|
6
16
|
readonly _TESTNET_WBTC_VESU: {
|
|
7
17
|
readonly pricing: {
|
|
8
18
|
readonly binancePair: "WBTCBTC";
|
|
@@ -23,6 +33,16 @@ export declare const SmartChainAssets: {
|
|
|
23
33
|
};
|
|
24
34
|
readonly name: "pegBTC (dev)";
|
|
25
35
|
};
|
|
36
|
+
readonly strkBTC: {
|
|
37
|
+
readonly pricing: {
|
|
38
|
+
readonly binancePair: "$fixed-100000000";
|
|
39
|
+
readonly okxPair: "$fixed-100000000";
|
|
40
|
+
readonly coinGeckoCoinId: "$fixed-100000000";
|
|
41
|
+
readonly coinPaprikaCoinId: "$fixed-100000000";
|
|
42
|
+
readonly krakenPair: "$fixed-100000000";
|
|
43
|
+
};
|
|
44
|
+
readonly name: "strkBTC";
|
|
45
|
+
};
|
|
26
46
|
readonly WBTC: {
|
|
27
47
|
readonly pricing: {
|
|
28
48
|
readonly binancePair: "WBTCBTC";
|
package/dist/SmartChainAssets.js
CHANGED
|
@@ -6,6 +6,16 @@ exports.SmartChainAssets = void 0;
|
|
|
6
6
|
* @category Tokens
|
|
7
7
|
*/
|
|
8
8
|
exports.SmartChainAssets = {
|
|
9
|
+
_TESTNET_strkBTC: {
|
|
10
|
+
pricing: {
|
|
11
|
+
binancePair: "$fixed-100000000",
|
|
12
|
+
okxPair: "$fixed-100000000",
|
|
13
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
14
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
15
|
+
krakenPair: "$fixed-100000000"
|
|
16
|
+
},
|
|
17
|
+
name: "strkBTC (dev)"
|
|
18
|
+
},
|
|
9
19
|
_TESTNET_WBTC_VESU: {
|
|
10
20
|
pricing: {
|
|
11
21
|
binancePair: "WBTCBTC",
|
|
@@ -26,6 +36,16 @@ exports.SmartChainAssets = {
|
|
|
26
36
|
},
|
|
27
37
|
name: "pegBTC (dev)"
|
|
28
38
|
},
|
|
39
|
+
strkBTC: {
|
|
40
|
+
pricing: {
|
|
41
|
+
binancePair: "$fixed-100000000",
|
|
42
|
+
okxPair: "$fixed-100000000",
|
|
43
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
44
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
45
|
+
krakenPair: "$fixed-100000000"
|
|
46
|
+
},
|
|
47
|
+
name: "strkBTC"
|
|
48
|
+
},
|
|
29
49
|
WBTC: {
|
|
30
50
|
pricing: {
|
|
31
51
|
binancePair: "WBTCBTC",
|
package/package.json
CHANGED
package/src/SmartChainAssets.ts
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
* @category Tokens
|
|
5
5
|
*/
|
|
6
6
|
export const SmartChainAssets = {
|
|
7
|
+
_TESTNET_strkBTC: {
|
|
8
|
+
pricing: {
|
|
9
|
+
binancePair: "$fixed-100000000",
|
|
10
|
+
okxPair: "$fixed-100000000",
|
|
11
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
12
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
13
|
+
krakenPair: "$fixed-100000000"
|
|
14
|
+
},
|
|
15
|
+
name: "strkBTC (dev)"
|
|
16
|
+
},
|
|
7
17
|
_TESTNET_WBTC_VESU: {
|
|
8
18
|
pricing: {
|
|
9
19
|
binancePair: "WBTCBTC",
|
|
@@ -24,6 +34,16 @@ export const SmartChainAssets = {
|
|
|
24
34
|
},
|
|
25
35
|
name: "pegBTC (dev)"
|
|
26
36
|
},
|
|
37
|
+
strkBTC: {
|
|
38
|
+
pricing: {
|
|
39
|
+
binancePair: "$fixed-100000000",
|
|
40
|
+
okxPair: "$fixed-100000000",
|
|
41
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
42
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
43
|
+
krakenPair: "$fixed-100000000"
|
|
44
|
+
},
|
|
45
|
+
name: "strkBTC"
|
|
46
|
+
},
|
|
27
47
|
WBTC: {
|
|
28
48
|
pricing: {
|
|
29
49
|
binancePair: "WBTCBTC",
|