@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.
@@ -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';
@@ -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;