@cowprotocol/sdk-bridging 0.3.2 → 0.3.3

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/index.d.mts CHANGED
@@ -825,7 +825,7 @@ declare class AcrossBridgeProvider implements BridgeProvider<AcrossQuoteResult>
825
825
  params: BridgingDepositParams;
826
826
  status: BridgeStatusResult;
827
827
  } | null>;
828
- getExplorerUrl(bridgingId: string): string;
828
+ getExplorerUrl(_: string): string;
829
829
  getStatus(bridgingId: string, originChainId: SupportedChainId): Promise<BridgeStatusResult>;
830
830
  getCancelBridgingTx(_bridgingId: string): Promise<EvmCall>;
831
831
  getRefundBridgingTx(_bridgingId: string): Promise<EvmCall>;
package/dist/index.d.ts CHANGED
@@ -825,7 +825,7 @@ declare class AcrossBridgeProvider implements BridgeProvider<AcrossQuoteResult>
825
825
  params: BridgingDepositParams;
826
826
  status: BridgeStatusResult;
827
827
  } | null>;
828
- getExplorerUrl(bridgingId: string): string;
828
+ getExplorerUrl(_: string): string;
829
829
  getStatus(bridgingId: string, originChainId: SupportedChainId): Promise<BridgeStatusResult>;
830
830
  getCancelBridgingTx(_bridgingId: string): Promise<EvmCall>;
831
831
  getRefundBridgingTx(_bridgingId: string): Promise<EvmCall>;
package/dist/index.js CHANGED
@@ -3220,8 +3220,8 @@ var AcrossBridgeProvider = class {
3220
3220
  status: await this.getStatus(params.bridgingId, chainId)
3221
3221
  };
3222
3222
  }
3223
- getExplorerUrl(bridgingId) {
3224
- return `https://app.across.to/transactions/${bridgingId}`;
3223
+ getExplorerUrl(_) {
3224
+ return `https://app.across.to/transactions`;
3225
3225
  }
3226
3226
  async getStatus(bridgingId, originChainId) {
3227
3227
  const depositStatus = await this.api.getDepositStatus({
package/dist/index.mjs CHANGED
@@ -3184,8 +3184,8 @@ var AcrossBridgeProvider = class {
3184
3184
  status: await this.getStatus(params.bridgingId, chainId)
3185
3185
  };
3186
3186
  }
3187
- getExplorerUrl(bridgingId) {
3188
- return `https://app.across.to/transactions/${bridgingId}`;
3187
+ getExplorerUrl(_) {
3188
+ return `https://app.across.to/transactions`;
3189
3189
  }
3190
3190
  async getStatus(bridgingId, originChainId) {
3191
3191
  const depositStatus = await this.api.getDepositStatus({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/sdk-bridging",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Bridging for CoW Protocol",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -18,10 +18,10 @@
18
18
  "@cowprotocol/sdk-common": "0.1.0",
19
19
  "@cowprotocol/sdk-config": "0.1.0",
20
20
  "@cowprotocol/sdk-contracts-ts": "0.2.1",
21
+ "@cowprotocol/sdk-cow-shed": "0.1.3",
21
22
  "@cowprotocol/sdk-order-book": "0.1.0",
22
23
  "@cowprotocol/sdk-trading": "0.1.3",
23
- "@cowprotocol/sdk-weiroll": "0.1.0",
24
- "@cowprotocol/sdk-cow-shed": "0.1.3"
24
+ "@cowprotocol/sdk-weiroll": "0.1.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "ethers-v5": "npm:ethers@^5.7.2",
@@ -36,11 +36,11 @@
36
36
  "ts-jest": "^29.0.0",
37
37
  "ethers": "^5.7.2",
38
38
  "viem": "^2.28.4",
39
- "@cowprotocol/sdk-ethers-v5-adapter": "0.1.0",
40
- "@cowprotocol/sdk-order-signing": "0.1.3",
41
39
  "@cow-sdk/typescript-config": "0.0.0-beta.0",
40
+ "@cowprotocol/sdk-order-signing": "0.1.3",
42
41
  "@cowprotocol/sdk-ethers-v6-adapter": "0.1.0",
43
- "@cowprotocol/sdk-viem-adapter": "0.1.0"
42
+ "@cowprotocol/sdk-viem-adapter": "0.1.0",
43
+ "@cowprotocol/sdk-ethers-v5-adapter": "0.1.0"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsup src/index.ts --format esm,cjs --dts",