@circle-fin/adapter-ethers-v6 1.5.0 → 1.6.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/CHANGELOG.md +7 -1
- package/README.md +3 -3
- package/index.cjs +2270 -121
- package/index.d.ts +848 -34
- package/index.mjs +2270 -121
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# @circle-fin/adapter-ethers-v6
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- More accurate gas fee estimates for cross-chain transfers. Added automatic transaction simulation with retry logic before execution to catch errors early. Gas estimation now accepts an optional fallback value for chains with unreliable fee oracles. Updated default Polygon RPC endpoints.
|
|
8
|
+
|
|
9
|
+
## 1.5.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
6
12
|
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ _Seamlessly interact with 16+ EVM networks using a single, strongly-typed interf
|
|
|
57
57
|
|
|
58
58
|
## Overview
|
|
59
59
|
|
|
60
|
-
The Ethers v6 Adapter is a strongly-typed implementation of the `Adapter` interface for **EVM-compatible blockchains**. Built on top of the popular [Ethers v6](https://docs.ethers.org/v6/) library, it provides type-safe blockchain interactions through a unified interface that's designed to work seamlessly with the [Bridge Kit](https://www.npmjs.com/package/@circle-fin/bridge-kit) for cross-chain USDC transfers between Solana and EVM networks, as well as any future kits for additional stablecoin operations. It can be used by any Kit built using the
|
|
60
|
+
The Ethers v6 Adapter is a strongly-typed implementation of the `Adapter` interface for **EVM-compatible blockchains**. Built on top of the popular [Ethers v6](https://docs.ethers.org/v6/) library, it provides type-safe blockchain interactions through a unified interface that's designed to work seamlessly with the [Bridge Kit](https://www.npmjs.com/package/@circle-fin/bridge-kit) for cross-chain USDC transfers between Solana and EVM networks, as well as any future kits for additional stablecoin operations. It can be used by any Kit built using the App Kits architecture and/or any providers plugged into those kits.
|
|
61
61
|
|
|
62
62
|
### Why Ethers v6 Adapter?
|
|
63
63
|
|
|
@@ -72,7 +72,7 @@ The Ethers v6 Adapter is a strongly-typed implementation of the `Adapter` interf
|
|
|
72
72
|
|
|
73
73
|
#### For Kit Users
|
|
74
74
|
|
|
75
|
-
If you're using the Bridge Kit or other
|
|
75
|
+
If you're using the Bridge Kit or other App Kits for cross-chain operations, you only need to instantiate one adapter and pass it to the kit. The same adapter works across all supported chains.
|
|
76
76
|
|
|
77
77
|
```typescript
|
|
78
78
|
// Single adapter instance for multi-chain operations
|
|
@@ -626,7 +626,7 @@ The Ethers v6 adapter supports **34 EVM-compatible chains** across mainnet and t
|
|
|
626
626
|
|
|
627
627
|
## Development
|
|
628
628
|
|
|
629
|
-
This package is part of the
|
|
629
|
+
This package is part of the App Kits monorepo.
|
|
630
630
|
|
|
631
631
|
```bash
|
|
632
632
|
# Build
|