@cowprotocol/sdk-bridging 4.1.2 → 4.2.0
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/README.md +6 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +290 -184
- package/dist/index.mjs +249 -143
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
# SDK Bridging
|
|
6
6
|
|
|
7
|
+
## Test coverage
|
|
8
|
+
|
|
9
|
+
| Statements | Branches | Functions | Lines |
|
|
10
|
+
| --------------------------- | ----------------------- | ------------------------- | ----------------- |
|
|
11
|
+
|  |  |  |  |
|
|
12
|
+
|
|
7
13
|
This package provides bridging functionality for the CoW Protocol SDK, enabling cross-chain token transfers and interactions. It integrates with various bridge providers to facilitate seamless asset movement across supported blockchain networks.
|
|
8
14
|
|
|
9
15
|
## Installation
|
package/dist/index.d.mts
CHANGED
|
@@ -1280,6 +1280,7 @@ interface GetAttestationResponse {
|
|
|
1280
1280
|
version: number;
|
|
1281
1281
|
}
|
|
1282
1282
|
declare class NearIntentsApi {
|
|
1283
|
+
private static readonly DEPRECATED_ASSET_IDS;
|
|
1283
1284
|
private cachedTokens;
|
|
1284
1285
|
constructor(apiKey?: string);
|
|
1285
1286
|
getTokens(): Promise<TokenResponse[]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1280,6 +1280,7 @@ interface GetAttestationResponse {
|
|
|
1280
1280
|
version: number;
|
|
1281
1281
|
}
|
|
1282
1282
|
declare class NearIntentsApi {
|
|
1283
|
+
private static readonly DEPRECATED_ASSET_IDS;
|
|
1283
1284
|
private cachedTokens;
|
|
1284
1285
|
constructor(apiKey?: string);
|
|
1285
1286
|
getTokens(): Promise<TokenResponse[]>;
|