@circle-fin/app-kit 1.2.1 → 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 +20 -0
- package/README.md +6 -2
- package/chains.cjs +630 -5
- package/chains.d.ts +329 -3
- package/chains.mjs +630 -5
- package/index.cjs +19513 -9145
- package/index.d.ts +4548 -299
- package/index.mjs +19514 -9146
- package/package.json +38 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @circle-fin/app-kit
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- App Kit now supports unified cross-chain USDC balance management. Import from `@circle-fin/app-kit/unifiedBalance` to deposit, spend, query balances, and manage delegates across chains
|
|
8
|
+
|
|
9
|
+
## 1.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Add `retryBridge()` method to AppKit for retrying failed or incomplete cross-chain bridge operations.
|
|
14
|
+
- Add Arc Testnet support for swap operations.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Swap slippage and stop-limit failures now return a distinct retryable error instead of fatal "route not found"
|
|
19
|
+
- Bridge operations now automatically retry transient RPC errors with exponential backoff
|
|
20
|
+
- Update HyperEVM mainnet explorer URL to resolve location-restricted access issues
|
|
21
|
+
- Improved search discoverability
|
|
22
|
+
|
|
3
23
|
## 1.2.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
8
8
|
[](https://discord.com/invite/buildoncircle)
|
|
9
9
|
|
|
10
|
-
**A
|
|
10
|
+
**A one-stop Circle SDK for building stablecoin (e.g. USDC) applications, providing a unified set of on-chain tools for bridging, swapping, and other stablecoin operations.**
|
|
11
11
|
|
|
12
|
-
_Making cross-chain transfers
|
|
12
|
+
_Making cross-chain transfers, same-chain swaps, and token sends as simple as a single function call_
|
|
13
13
|
|
|
14
14
|
</div>
|
|
15
15
|
|
|
@@ -72,6 +72,10 @@ The App Kit provides a **unified interface** for both cross-chain transfers and
|
|
|
72
72
|
- **🛡️ Robust error handling**: Graceful partial success recovery
|
|
73
73
|
- **✈️ Pre-flight validation**: Verify operations with cost estimation before execution
|
|
74
74
|
|
|
75
|
+
## Developer Documentation
|
|
76
|
+
|
|
77
|
+
- [App Kit Documentation](https://docs.arc.network/app-kit)
|
|
78
|
+
|
|
75
79
|
## Architecture Flow
|
|
76
80
|
|
|
77
81
|
The App Kit follows a composable architecture that integrates Bridge Kit and Swap Kit:
|