@cowprotocol/cow-sdk 6.0.0-RC.57 → 6.0.0-RC.59
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/bridging/index.d.ts +2 -0
- package/dist/bridging/types.d.ts +2 -0
- package/dist/{index-568ec211.js → index-b2ef8f94.js} +5 -5
- package/dist/index-b2ef8f94.js.map +1 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.module.js +4 -4
- package/dist/index.module.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/{utils-51b5772e.js → utils-1673da00.js} +2 -2
- package/dist/{utils-51b5772e.js.map → utils-1673da00.js.map} +1 -1
- package/dist/{utils-0b363105.js → utils-228ed8cc.js} +1 -1
- package/dist/{utils-0b363105.js.map → utils-228ed8cc.js.map} +1 -1
- package/dist/{utils-e3dd8cbd.js → utils-afa56976.js} +1 -1
- package/dist/{utils-e3dd8cbd.js.map → utils-afa56976.js.map} +1 -1
- package/package.json +1 -1
- package/dist/index-568ec211.js.map +0 -1
package/dist/bridging/index.d.ts
CHANGED
|
@@ -2,5 +2,7 @@ export * from './types';
|
|
|
2
2
|
export * from './errors';
|
|
3
3
|
export * from './utils';
|
|
4
4
|
export * from './BridgingSdk/BridgingSdk';
|
|
5
|
+
export * from './const';
|
|
6
|
+
export { getCrossChainOrder } from './BridgingSdk/getCrossChainOrder';
|
|
5
7
|
export { AcrossBridgeProvider, AcrossQuoteResult, AcrossBridgeProviderOptions, } from './providers/across/AcrossBridgeProvider';
|
|
6
8
|
export { BungeeBridgeProvider, BungeeQuoteResult, BungeeBridgeProviderOptions, } from './providers/bungee/BungeeBridgeProvider';
|
package/dist/bridging/types.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export interface BridgeProviderInfo {
|
|
|
11
11
|
name: string;
|
|
12
12
|
logoUrl: string;
|
|
13
13
|
dappId: string;
|
|
14
|
+
website: string;
|
|
14
15
|
}
|
|
15
16
|
interface WithSellToken {
|
|
16
17
|
sellTokenChainId: SupportedChainId;
|
|
@@ -299,6 +300,7 @@ export interface BridgingDepositParams {
|
|
|
299
300
|
bridgingId: string;
|
|
300
301
|
}
|
|
301
302
|
export interface CrossChainOrder {
|
|
303
|
+
provider: BridgeProvider<BridgeQuoteResult>;
|
|
302
304
|
chainId: SupportedChainId;
|
|
303
305
|
order: EnrichedOrder;
|
|
304
306
|
statusResult: BridgeStatusResult;
|