@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.
@@ -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;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/sdk",
3
- "version": "7.0.6",
3
+ "version": "7.0.7",
4
4
  "description": "atomiq labs SDK for cross-chain swaps between smart chains and bitcoin",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -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