@circle-fin/adapter-ethers-v6 1.2.0 → 1.4.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 +23 -0
- package/index.cjs +351 -77
- package/index.d.ts +89 -9
- package/index.mjs +351 -77
- package/package.json +16 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @circle-fin/adapter-ethers-v6
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Monad chain support added
|
|
8
|
+
|
|
9
|
+
Monad mainnet and testnet are now supported for cross-chain USDC transfers. Use `'Monad'` or `'Monad_Testnet'` as chain identifiers in your bridge operations.
|
|
10
|
+
|
|
11
|
+
## 1.3.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- Add `native.balanceOf` action to query native token balances (ETH, SOL, etc.)
|
|
16
|
+
- Added `NativeActionMap` with `balanceOf` action to check native token balance for any wallet address
|
|
17
|
+
- Added abstract `readNativeBalance(address, chain)` method to base adapters
|
|
18
|
+
- Implemented `readNativeBalance` in all concrete adapters (Viem, Ethers, Solana, SolanaKit)
|
|
19
|
+
- Registered `native.balanceOf` action handlers for EVM and Solana chains
|
|
20
|
+
- Balance reads are gas-free operations returning balance as string (wei for EVM, lamports for Solana)
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- **Faster balance and allowance checks**: Read-only operations like checking token balances or allowances no longer require wallet network switching. This means no wallet popups asking for permission to switch networks, resulting in quicker responses and a smoother user experience.
|
|
25
|
+
|
|
3
26
|
## 1.2.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|