@circle-fin/provider-cctp-v2 1.9.0 → 1.10.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/index.cjs +2837 -2416
- package/index.d.cts +806 -240
- package/index.d.mts +806 -240
- package/index.d.ts +806 -240
- package/index.mjs +2833 -2417
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @circle-fin/provider-cctp-v2
|
|
2
2
|
|
|
3
|
+
## 1.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add `burnWithFees` for the CCTP v2 prepaid-FORWARD path via `TokenMessengerWithFees`.
|
|
8
|
+
|
|
9
|
+
`CCTPV2BridgingProvider.burnWithFees` prepares the source-chain
|
|
10
|
+
`depositForBurnWithHookAndFees` burn for the GenericExecutor FORWARD flow:
|
|
11
|
+
fees are collected up front against a signed quote, `mintRecipient` and
|
|
12
|
+
`destinationCaller` are both set to the GenericExecutor, and the GE
|
|
13
|
+
`hookData` is passed through the `cctp-forward` wrapper.
|
|
14
|
+
|
|
15
|
+
Also exports the `resolveFeePayment` fee-channel helper and the
|
|
16
|
+
`prepaidForwardErrors` utilities (`assertForwardHookData`,
|
|
17
|
+
`mapPrepaidForwardError`, `hasForwardHook`, `PREPAID_FORWARD_REVERT_NAMES`).
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Support keyless / signing-strategy viem adapters on the batched bridge (approve + burn) path.
|
|
22
|
+
|
|
3
23
|
## 1.9.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|