@circle-fin/provider-cctp-v2 1.2.0 → 1.3.1
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 +13 -0
- package/index.cjs +411 -117
- package/index.d.ts +12 -0
- package/index.mjs +411 -117
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -435,6 +435,8 @@ declare enum Blockchain {
|
|
|
435
435
|
Ink_Testnet = "Ink_Testnet",
|
|
436
436
|
Linea = "Linea",
|
|
437
437
|
Linea_Sepolia = "Linea_Sepolia",
|
|
438
|
+
Monad = "Monad",
|
|
439
|
+
Monad_Testnet = "Monad_Testnet",
|
|
438
440
|
NEAR = "NEAR",
|
|
439
441
|
NEAR_Testnet = "NEAR_Testnet",
|
|
440
442
|
Noble = "Noble",
|
|
@@ -3407,6 +3409,16 @@ interface CCTPV2Actions {
|
|
|
3407
3409
|
method: 'mint';
|
|
3408
3410
|
values: BridgeStep;
|
|
3409
3411
|
};
|
|
3412
|
+
/**
|
|
3413
|
+
* Re-attestation action for CCTP v2 transfers.
|
|
3414
|
+
* Used to request a fresh attestation when the original has expired.
|
|
3415
|
+
*/
|
|
3416
|
+
reAttest: {
|
|
3417
|
+
protocol: 'cctp';
|
|
3418
|
+
version: 'v2';
|
|
3419
|
+
method: 'reAttest';
|
|
3420
|
+
values: BridgeFetchAttestationStep;
|
|
3421
|
+
};
|
|
3410
3422
|
}
|
|
3411
3423
|
/**
|
|
3412
3424
|
* CCTPv2 bridging provider interface.
|