@cowprotocol/cow-sdk 6.2.0-RC.1 → 6.2.0-RC.2
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/providers/bungee/types.d.ts +3 -2
- package/dist/{index-99cb125a.js → index-8ffb4731.js} +3 -3
- package/dist/index-8ffb4731.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.module.js +2 -2
- package/dist/index.module.js.map +1 -1
- package/dist/package.json +3 -2
- package/dist/src/bridging/PROVIDER_README.md +819 -0
- package/dist/src/bridging/README.md +699 -35
- package/dist/test/getWallet.d.ts +5 -0
- package/dist/{utils-e3ee3550.js → utils-1cb16bf6.js} +2 -2
- package/dist/{utils-e3ee3550.js.map → utils-1cb16bf6.js.map} +1 -1
- package/dist/{utils-5e9c4a71.js → utils-c48fd8a5.js} +1 -1
- package/dist/{utils-5e9c4a71.js.map → utils-c48fd8a5.js.map} +1 -1
- package/dist/{utils-f2c09060.js → utils-c826b7a1.js} +1 -1
- package/dist/{utils-f2c09060.js.map → utils-c826b7a1.js.map} +1 -1
- package/package.json +3 -2
- package/dist/index-99cb125a.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type SupportedBridge = 'across' | 'cctp';
|
|
1
|
+
export type SupportedBridge = 'across' | 'cctp' | 'gnosis-native-bridge';
|
|
2
2
|
export interface BungeeQuoteAPIRequest {
|
|
3
3
|
userAddress: string;
|
|
4
4
|
originChainId: string;
|
|
@@ -105,7 +105,8 @@ export interface BungeeQuoteAPIResponse {
|
|
|
105
105
|
}
|
|
106
106
|
export declare enum BungeeBridge {
|
|
107
107
|
'Across' = "across",
|
|
108
|
-
'CircleCCTP' = "cctp"
|
|
108
|
+
'CircleCCTP' = "cctp",
|
|
109
|
+
'GnosisNative' = "gnosis-native-bridge"
|
|
109
110
|
}
|
|
110
111
|
export declare const BungeeBridgeNames: Record<string, BungeeBridge>;
|
|
111
112
|
export interface BungeeQuote {
|