@atomiqlabs/sdk 7.0.4 → 7.0.5
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 +10 -0
- package/dist/SmartChainAssets.js +11 -0
- package/package.json +1 -1
- package/src/SmartChainAssets.ts +11 -0
|
@@ -99,6 +99,16 @@ export declare const SmartChainAssets: {
|
|
|
99
99
|
};
|
|
100
100
|
readonly name: "Citrea BTC";
|
|
101
101
|
};
|
|
102
|
+
readonly BTC: {
|
|
103
|
+
readonly pricing: {
|
|
104
|
+
readonly binancePair: "$fixed-100000000";
|
|
105
|
+
readonly okxPair: "$fixed-100000000";
|
|
106
|
+
readonly coinGeckoCoinId: "$fixed-100000000";
|
|
107
|
+
readonly coinPaprikaCoinId: "$fixed-100000000";
|
|
108
|
+
readonly krakenPair: "$fixed-100000000";
|
|
109
|
+
};
|
|
110
|
+
readonly name: "Bitcoin";
|
|
111
|
+
};
|
|
102
112
|
readonly BBTC: {
|
|
103
113
|
readonly pricing: {
|
|
104
114
|
readonly binancePair: "$fixed-100000000";
|
package/dist/SmartChainAssets.js
CHANGED
|
@@ -102,6 +102,17 @@ exports.SmartChainAssets = {
|
|
|
102
102
|
},
|
|
103
103
|
name: "Citrea BTC"
|
|
104
104
|
},
|
|
105
|
+
//Used by both Botanix and Alpen
|
|
106
|
+
BTC: {
|
|
107
|
+
pricing: {
|
|
108
|
+
binancePair: "$fixed-100000000",
|
|
109
|
+
okxPair: "$fixed-100000000",
|
|
110
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
111
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
112
|
+
krakenPair: "$fixed-100000000"
|
|
113
|
+
},
|
|
114
|
+
name: "Bitcoin"
|
|
115
|
+
},
|
|
105
116
|
BBTC: {
|
|
106
117
|
pricing: {
|
|
107
118
|
binancePair: "$fixed-100000000",
|
package/package.json
CHANGED
package/src/SmartChainAssets.ts
CHANGED
|
@@ -101,6 +101,17 @@ export const SmartChainAssets = {
|
|
|
101
101
|
},
|
|
102
102
|
name: "Citrea BTC"
|
|
103
103
|
},
|
|
104
|
+
//Used by both Botanix and Alpen
|
|
105
|
+
BTC: {
|
|
106
|
+
pricing: {
|
|
107
|
+
binancePair: "$fixed-100000000",
|
|
108
|
+
okxPair: "$fixed-100000000",
|
|
109
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
110
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
111
|
+
krakenPair: "$fixed-100000000"
|
|
112
|
+
},
|
|
113
|
+
name: "Bitcoin"
|
|
114
|
+
},
|
|
104
115
|
BBTC: {
|
|
105
116
|
pricing: {
|
|
106
117
|
binancePair: "$fixed-100000000",
|