@rash2x/bridge-widget 0.8.4 → 0.8.6
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/evaa-bridge.cjs +3 -1
- package/dist/evaa-bridge.cjs.map +1 -1
- package/dist/evaa-bridge.mjs +25 -23
- package/dist/{index-BKyBBUlY.js → index-B9_Kn_rc.js} +2 -2
- package/dist/{index-BKyBBUlY.js.map → index-B9_Kn_rc.js.map} +1 -1
- package/dist/{index-BdfMMh_j.cjs → index-BSfpUPGz.cjs} +2 -2
- package/dist/{index-BdfMMh_j.cjs.map → index-BSfpUPGz.cjs.map} +1 -1
- package/dist/{index-BDGHvxEQ.cjs → index-DUoTGuFx.cjs} +161 -55
- package/dist/index-DUoTGuFx.cjs.map +1 -0
- package/dist/{index-B5QQQ8Nj.js → index-UBA5Oxdc.js} +183 -77
- package/dist/index-UBA5Oxdc.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/dist/index-B5QQQ8Nj.js.map +0 -1
- package/dist/index-BDGHvxEQ.cjs.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -537,6 +537,10 @@ export declare type QuoteSendResponse = {
|
|
|
537
537
|
|
|
538
538
|
export declare function reportBridgeTransaction(params: BridgeTransactionReportParams, config: BridgeReportConfig): Promise<BridgeTransactionReportResponse>;
|
|
539
539
|
|
|
540
|
+
export declare function resolveBridgeDestinationTokenOnChainFromMatrix(assetMatrix: Record<string, Record<string, Token>> | undefined, assetSymbol: string | undefined, chainKey: string | undefined): Token | undefined;
|
|
541
|
+
|
|
542
|
+
export declare function resolveBridgeSourceTokenOnChainFromMatrix(assetMatrix: Record<string, Record<string, Token>> | undefined, assetSymbol: string | undefined, chainKey: string | undefined): Token | undefined;
|
|
543
|
+
|
|
540
544
|
export declare function resolveTokenOnChain(tokens: Token[], assetSymbol: string, chainKey: string): Token | undefined;
|
|
541
545
|
|
|
542
546
|
export declare function resolveTokenOnChainFromMatrix(assetMatrix: Record<string, Record<string, Token>> | undefined, assetSymbol: string | undefined, chainKey: string | undefined): Token | undefined;
|
package/package.json
CHANGED