@atomiqlabs/sdk 7.0.6 → 7.0.7
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
|
@@ -129,5 +129,15 @@ export declare const SmartChainAssets: {
|
|
|
129
129
|
};
|
|
130
130
|
readonly name: "Alpen BTC";
|
|
131
131
|
};
|
|
132
|
+
readonly PBTC: {
|
|
133
|
+
readonly pricing: {
|
|
134
|
+
readonly binancePair: "$fixed-100000000";
|
|
135
|
+
readonly okxPair: "$fixed-100000000";
|
|
136
|
+
readonly coinGeckoCoinId: "$fixed-100000000";
|
|
137
|
+
readonly coinPaprikaCoinId: "$fixed-100000000";
|
|
138
|
+
readonly krakenPair: "$fixed-100000000";
|
|
139
|
+
};
|
|
140
|
+
readonly name: "pegBTC";
|
|
141
|
+
};
|
|
132
142
|
};
|
|
133
143
|
export type SmartChainAssetTickers = keyof typeof SmartChainAssets;
|
package/dist/SmartChainAssets.js
CHANGED
|
@@ -132,5 +132,16 @@ exports.SmartChainAssets = {
|
|
|
132
132
|
krakenPair: "$fixed-100000000"
|
|
133
133
|
},
|
|
134
134
|
name: "Alpen BTC"
|
|
135
|
+
},
|
|
136
|
+
//Used by GOAT network
|
|
137
|
+
PBTC: {
|
|
138
|
+
pricing: {
|
|
139
|
+
binancePair: "$fixed-100000000",
|
|
140
|
+
okxPair: "$fixed-100000000",
|
|
141
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
142
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
143
|
+
krakenPair: "$fixed-100000000"
|
|
144
|
+
},
|
|
145
|
+
name: "pegBTC"
|
|
135
146
|
}
|
|
136
147
|
};
|
package/package.json
CHANGED
package/src/SmartChainAssets.ts
CHANGED
|
@@ -131,6 +131,17 @@ export const SmartChainAssets = {
|
|
|
131
131
|
krakenPair: "$fixed-100000000"
|
|
132
132
|
},
|
|
133
133
|
name: "Alpen BTC"
|
|
134
|
+
},
|
|
135
|
+
//Used by GOAT network
|
|
136
|
+
PBTC: {
|
|
137
|
+
pricing: {
|
|
138
|
+
binancePair: "$fixed-100000000",
|
|
139
|
+
okxPair: "$fixed-100000000",
|
|
140
|
+
coinGeckoCoinId: "$fixed-100000000",
|
|
141
|
+
coinPaprikaCoinId: "$fixed-100000000",
|
|
142
|
+
krakenPair: "$fixed-100000000"
|
|
143
|
+
},
|
|
144
|
+
name: "pegBTC"
|
|
134
145
|
}
|
|
135
146
|
} as const;
|
|
136
147
|
|