@circle-fin/app-kit 1.8.1 → 1.9.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.
@@ -659,6 +659,8 @@ declare enum Blockchain {
659
659
  Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
660
660
  Codex = "Codex",
661
661
  Codex_Testnet = "Codex_Testnet",
662
+ Cronos = "Cronos",
663
+ Cronos_Testnet = "Cronos_Testnet",
662
664
  Edge = "Edge",
663
665
  Edge_Testnet = "Edge_Testnet",
664
666
  Ethereum = "Ethereum",
@@ -900,6 +902,7 @@ declare enum BridgeChain {
900
902
  Avalanche = "Avalanche",
901
903
  Base = "Base",
902
904
  Codex = "Codex",
905
+ Cronos = "Cronos",
903
906
  Edge = "Edge",
904
907
  Ethereum = "Ethereum",
905
908
  HyperEVM = "HyperEVM",
@@ -923,6 +926,7 @@ declare enum BridgeChain {
923
926
  Avalanche_Fuji = "Avalanche_Fuji",
924
927
  Base_Sepolia = "Base_Sepolia",
925
928
  Codex_Testnet = "Codex_Testnet",
929
+ Cronos_Testnet = "Cronos_Testnet",
926
930
  Edge_Testnet = "Edge_Testnet",
927
931
  Ethereum_Sepolia = "Ethereum_Sepolia",
928
932
  HyperEVM_Testnet = "HyperEVM_Testnet",
@@ -6437,6 +6441,16 @@ interface AppKitContext {
6437
6441
  * @defaultValue false
6438
6442
  */
6439
6443
  disableErrorReporting?: boolean;
6444
+ /**
6445
+ * Custom HTTP headers forwarded with the underlying CCTP provider's
6446
+ * attestation (Iris) API requests made by bridge operations.
6447
+ *
6448
+ * @remarks
6449
+ * Headers are merged on top of the SDK defaults (such as `Content-Type`)
6450
+ * rather than replacing them. The header is forwarded as-is to Circle's API;
6451
+ * the SDK does not interpret it.
6452
+ */
6453
+ headers?: Record<string, string>;
6440
6454
  }
6441
6455
 
6442
6456
  /**
@@ -659,6 +659,8 @@ declare enum Blockchain {
659
659
  Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
660
660
  Codex = "Codex",
661
661
  Codex_Testnet = "Codex_Testnet",
662
+ Cronos = "Cronos",
663
+ Cronos_Testnet = "Cronos_Testnet",
662
664
  Edge = "Edge",
663
665
  Edge_Testnet = "Edge_Testnet",
664
666
  Ethereum = "Ethereum",
@@ -900,6 +902,7 @@ declare enum BridgeChain {
900
902
  Avalanche = "Avalanche",
901
903
  Base = "Base",
902
904
  Codex = "Codex",
905
+ Cronos = "Cronos",
903
906
  Edge = "Edge",
904
907
  Ethereum = "Ethereum",
905
908
  HyperEVM = "HyperEVM",
@@ -923,6 +926,7 @@ declare enum BridgeChain {
923
926
  Avalanche_Fuji = "Avalanche_Fuji",
924
927
  Base_Sepolia = "Base_Sepolia",
925
928
  Codex_Testnet = "Codex_Testnet",
929
+ Cronos_Testnet = "Cronos_Testnet",
926
930
  Edge_Testnet = "Edge_Testnet",
927
931
  Ethereum_Sepolia = "Ethereum_Sepolia",
928
932
  HyperEVM_Testnet = "HyperEVM_Testnet",
@@ -6437,6 +6441,16 @@ interface AppKitContext {
6437
6441
  * @defaultValue false
6438
6442
  */
6439
6443
  disableErrorReporting?: boolean;
6444
+ /**
6445
+ * Custom HTTP headers forwarded with the underlying CCTP provider's
6446
+ * attestation (Iris) API requests made by bridge operations.
6447
+ *
6448
+ * @remarks
6449
+ * Headers are merged on top of the SDK defaults (such as `Content-Type`)
6450
+ * rather than replacing them. The header is forwarded as-is to Circle's API;
6451
+ * the SDK does not interpret it.
6452
+ */
6453
+ headers?: Record<string, string>;
6440
6454
  }
6441
6455
 
6442
6456
  /**
@@ -659,6 +659,8 @@ declare enum Blockchain {
659
659
  Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
660
660
  Codex = "Codex",
661
661
  Codex_Testnet = "Codex_Testnet",
662
+ Cronos = "Cronos",
663
+ Cronos_Testnet = "Cronos_Testnet",
662
664
  Edge = "Edge",
663
665
  Edge_Testnet = "Edge_Testnet",
664
666
  Ethereum = "Ethereum",
@@ -900,6 +902,7 @@ declare enum BridgeChain {
900
902
  Avalanche = "Avalanche",
901
903
  Base = "Base",
902
904
  Codex = "Codex",
905
+ Cronos = "Cronos",
903
906
  Edge = "Edge",
904
907
  Ethereum = "Ethereum",
905
908
  HyperEVM = "HyperEVM",
@@ -923,6 +926,7 @@ declare enum BridgeChain {
923
926
  Avalanche_Fuji = "Avalanche_Fuji",
924
927
  Base_Sepolia = "Base_Sepolia",
925
928
  Codex_Testnet = "Codex_Testnet",
929
+ Cronos_Testnet = "Cronos_Testnet",
926
930
  Edge_Testnet = "Edge_Testnet",
927
931
  Ethereum_Sepolia = "Ethereum_Sepolia",
928
932
  HyperEVM_Testnet = "HyperEVM_Testnet",
@@ -6437,6 +6441,16 @@ interface AppKitContext {
6437
6441
  * @defaultValue false
6438
6442
  */
6439
6443
  disableErrorReporting?: boolean;
6444
+ /**
6445
+ * Custom HTTP headers forwarded with the underlying CCTP provider's
6446
+ * attestation (Iris) API requests made by bridge operations.
6447
+ *
6448
+ * @remarks
6449
+ * Headers are merged on top of the SDK defaults (such as `Content-Type`)
6450
+ * rather than replacing them. The header is forwarded as-is to Circle's API;
6451
+ * the SDK does not interpret it.
6452
+ */
6453
+ headers?: Record<string, string>;
6440
6454
  }
6441
6455
 
6442
6456
  /**