@chainflip/utils 0.11.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/dist/chainflip.cjs
CHANGED
|
@@ -217,6 +217,7 @@ var internalAssetToRpcAsset = {
|
|
|
217
217
|
Flip: { chain: "Ethereum", asset: "FLIP" },
|
|
218
218
|
Usdc: { chain: "Ethereum", asset: "USDC" },
|
|
219
219
|
Usdt: { chain: "Ethereum", asset: "USDT" },
|
|
220
|
+
Dot: { chain: "Polkadot", asset: "DOT" },
|
|
220
221
|
Btc: { chain: "Bitcoin", asset: "BTC" },
|
|
221
222
|
ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
|
|
222
223
|
ArbEth: { chain: "Arbitrum", asset: "ETH" },
|
package/dist/chainflip.d.cts
CHANGED
|
@@ -186,7 +186,12 @@ declare const chainConstants: {
|
|
|
186
186
|
readonly blockTimeSeconds: 12;
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
|
-
declare const internalAssetToRpcAsset: InternalAssetMap<AssetAndChain
|
|
189
|
+
declare const internalAssetToRpcAsset: InternalAssetMap<AssetAndChain> & {
|
|
190
|
+
Dot: {
|
|
191
|
+
chain: 'Polkadot';
|
|
192
|
+
asset: 'DOT';
|
|
193
|
+
};
|
|
194
|
+
};
|
|
190
195
|
declare const chainContractId: ChainMap<number> & {
|
|
191
196
|
Polkadot: 2;
|
|
192
197
|
};
|
package/dist/chainflip.d.ts
CHANGED
|
@@ -186,7 +186,12 @@ declare const chainConstants: {
|
|
|
186
186
|
readonly blockTimeSeconds: 12;
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
|
-
declare const internalAssetToRpcAsset: InternalAssetMap<AssetAndChain
|
|
189
|
+
declare const internalAssetToRpcAsset: InternalAssetMap<AssetAndChain> & {
|
|
190
|
+
Dot: {
|
|
191
|
+
chain: 'Polkadot';
|
|
192
|
+
asset: 'DOT';
|
|
193
|
+
};
|
|
194
|
+
};
|
|
190
195
|
declare const chainContractId: ChainMap<number> & {
|
|
191
196
|
Polkadot: 2;
|
|
192
197
|
};
|
package/dist/chainflip.js
CHANGED
|
@@ -175,6 +175,7 @@ var internalAssetToRpcAsset = {
|
|
|
175
175
|
Flip: { chain: "Ethereum", asset: "FLIP" },
|
|
176
176
|
Usdc: { chain: "Ethereum", asset: "USDC" },
|
|
177
177
|
Usdt: { chain: "Ethereum", asset: "USDT" },
|
|
178
|
+
Dot: { chain: "Polkadot", asset: "DOT" },
|
|
178
179
|
Btc: { chain: "Bitcoin", asset: "BTC" },
|
|
179
180
|
ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
|
|
180
181
|
ArbEth: { chain: "Arbitrum", asset: "ETH" },
|
package/dist/tickMath.js
CHANGED