@circle-fin/usdckit 0.23.2 → 0.24.2
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/dist/cjs/actions/index.d.ts +1 -1
- package/dist/cjs/chains/ARB.d.ts +9 -0
- package/dist/cjs/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/chains/ARC_TESTNET.d.ts +11 -2
- package/dist/cjs/chains/ARC_TESTNET.js +3 -36
- package/dist/cjs/chains/AVAX.d.ts +9 -0
- package/dist/cjs/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/cjs/chains/BASE.d.ts +13 -3
- package/dist/cjs/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/chains/ETH.d.ts +9 -0
- package/dist/cjs/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/chains/MATIC.d.ts +12 -3
- package/dist/cjs/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/cjs/chains/MONAD.d.ts +193 -0
- package/dist/cjs/chains/MONAD.js +24 -0
- package/dist/cjs/chains/MONAD_TESTNET.d.ts +187 -0
- package/dist/cjs/chains/MONAD_TESTNET.js +24 -0
- package/dist/cjs/chains/NEAR.d.ts +10 -1
- package/dist/cjs/chains/NEAR_TESTNET.d.ts +10 -1
- package/dist/cjs/chains/OP.d.ts +13 -3
- package/dist/cjs/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/chains/SOL.d.ts +9 -0
- package/dist/cjs/chains/SOL_DEVNET.d.ts +9 -0
- package/dist/cjs/chains/UNI.d.ts +14 -4
- package/dist/cjs/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/chains/index.d.ts +4 -2
- package/dist/cjs/chains/index.js +5 -1
- package/dist/cjs/chains/index.test.js +2 -0
- package/dist/cjs/chains.d.ts +2 -0
- package/dist/cjs/chains.js +12 -0
- package/dist/cjs/client.d.ts +1 -1
- package/dist/cjs/extractChain.d.ts +585 -30
- package/dist/cjs/extractChain.test.js +4 -0
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/metadata.js +1 -1
- package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +546 -27
- package/dist/cjs/providers/circle-wallets/actions/createAccount.js +0 -3
- package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +546 -27
- package/dist/cjs/providers/circle-wallets/index.d.ts +960 -66
- package/dist/cjs/providers/circle-wallets/index.js +3 -0
- package/dist/cjs/providers/circle-wallets/transports/index.js +0 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +12 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +14 -4
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/providers/cross-chain-transfer-protocol/index.d.ts +157 -25
- package/dist/cjs/providers/solana/index.d.ts +18 -0
- package/dist/cjs/providers/uniswap/chains/ARB.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/AVAX.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/BASE.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/ETH.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/providers/uniswap/chains/MATIC.d.ts +12 -3
- package/dist/cjs/providers/uniswap/chains/OP.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/UNI.d.ts +14 -4
- package/dist/cjs/providers/uniswap/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/providers/uniswap/index.d.ts +138 -24
- package/dist/cjs/utils/createConfig.d.ts +1 -1
- package/dist/cjs/utils/createCustomWalletClient.d.ts +1 -1
- package/dist/cjs/utils/getChainContractByAddress.d.ts +1 -1
- package/dist/cjs/utils/getClient.d.ts +30 -1
- package/dist/cjs/utils/getContract.d.ts +8 -8
- package/dist/esm/actions/index.d.ts +1 -1
- package/dist/esm/chains/ARB.d.ts +9 -0
- package/dist/esm/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/chains/ARC_TESTNET.d.ts +11 -2
- package/dist/esm/chains/ARC_TESTNET.js +1 -34
- package/dist/esm/chains/AVAX.d.ts +9 -0
- package/dist/esm/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/esm/chains/BASE.d.ts +13 -3
- package/dist/esm/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/chains/ETH.d.ts +9 -0
- package/dist/esm/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/chains/MATIC.d.ts +12 -3
- package/dist/esm/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/esm/chains/MONAD.d.ts +193 -0
- package/dist/esm/chains/MONAD.js +21 -0
- package/dist/esm/chains/MONAD_TESTNET.d.ts +187 -0
- package/dist/esm/chains/MONAD_TESTNET.js +21 -0
- package/dist/esm/chains/NEAR.d.ts +10 -1
- package/dist/esm/chains/NEAR_TESTNET.d.ts +10 -1
- package/dist/esm/chains/OP.d.ts +13 -3
- package/dist/esm/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/chains/SOL.d.ts +9 -0
- package/dist/esm/chains/SOL_DEVNET.d.ts +9 -0
- package/dist/esm/chains/UNI.d.ts +14 -4
- package/dist/esm/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/chains/index.d.ts +4 -2
- package/dist/esm/chains/index.js +3 -1
- package/dist/esm/chains/index.test.js +2 -0
- package/dist/esm/chains.d.ts +2 -0
- package/dist/esm/chains.js +11 -0
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/extractChain.d.ts +585 -30
- package/dist/esm/extractChain.test.js +6 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/metadata.js +1 -1
- package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +546 -27
- package/dist/esm/providers/circle-wallets/actions/createAccount.js +0 -3
- package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +546 -27
- package/dist/esm/providers/circle-wallets/index.d.ts +960 -66
- package/dist/esm/providers/circle-wallets/index.js +4 -1
- package/dist/esm/providers/circle-wallets/transports/index.js +0 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +12 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +14 -4
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/providers/cross-chain-transfer-protocol/index.d.ts +157 -25
- package/dist/esm/providers/solana/index.d.ts +18 -0
- package/dist/esm/providers/uniswap/chains/ARB.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/AVAX.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/BASE.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/ETH.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/providers/uniswap/chains/MATIC.d.ts +12 -3
- package/dist/esm/providers/uniswap/chains/OP.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/UNI.d.ts +14 -4
- package/dist/esm/providers/uniswap/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/providers/uniswap/index.d.ts +138 -24
- package/dist/esm/utils/createConfig.d.ts +1 -1
- package/dist/esm/utils/createCustomWalletClient.d.ts +1 -1
- package/dist/esm/utils/getChainContractByAddress.d.ts +1 -1
- package/dist/esm/utils/getClient.d.ts +30 -1
- package/dist/esm/utils/getContract.d.ts +8 -8
- package/package.json +5 -5
package/dist/esm/chains/UNI.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const chain: {
|
|
|
6
6
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
blockTime:
|
|
9
|
+
blockTime: 1000;
|
|
10
10
|
contracts: {
|
|
11
11
|
readonly USDC: {
|
|
12
12
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -204,11 +204,12 @@ export declare const chain: {
|
|
|
204
204
|
sourceId: 1;
|
|
205
205
|
testnet?: boolean | undefined | undefined;
|
|
206
206
|
custom?: Record<string, unknown> | undefined;
|
|
207
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
207
208
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
208
209
|
formatters: {
|
|
209
210
|
readonly block: {
|
|
210
211
|
exclude: [] | undefined;
|
|
211
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
212
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
212
213
|
baseFeePerGas: bigint | null;
|
|
213
214
|
blobGasUsed: bigint;
|
|
214
215
|
difficulty: bigint;
|
|
@@ -241,7 +242,7 @@ export declare const chain: {
|
|
|
241
242
|
};
|
|
242
243
|
readonly transaction: {
|
|
243
244
|
exclude: [] | undefined;
|
|
244
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
245
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
245
246
|
blockHash: `0x${string}` | null;
|
|
246
247
|
blockNumber: bigint | null;
|
|
247
248
|
from: import("viem").Address;
|
|
@@ -410,11 +411,12 @@ export declare const chain: {
|
|
|
410
411
|
};
|
|
411
412
|
readonly transactionReceipt: {
|
|
412
413
|
exclude: [] | undefined;
|
|
413
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
414
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
414
415
|
blobGasPrice?: bigint | undefined;
|
|
415
416
|
blobGasUsed?: bigint | undefined;
|
|
416
417
|
blockHash: import("viem").Hash;
|
|
417
418
|
blockNumber: bigint;
|
|
419
|
+
blockTimestamp?: bigint | undefined;
|
|
418
420
|
contractAddress: import("viem").Address | null | undefined;
|
|
419
421
|
cumulativeGasUsed: bigint;
|
|
420
422
|
effectiveGasPrice: bigint;
|
|
@@ -436,9 +438,17 @@ export declare const chain: {
|
|
|
436
438
|
type: "transactionReceipt";
|
|
437
439
|
};
|
|
438
440
|
};
|
|
441
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
442
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
443
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
444
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
445
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
446
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
447
|
+
}] | undefined;
|
|
439
448
|
serializers: {
|
|
440
449
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
441
450
|
};
|
|
451
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
442
452
|
readonly blockchainId: "UNI";
|
|
443
453
|
readonly blockchainVm: "EVM";
|
|
444
454
|
};
|
|
@@ -6,7 +6,7 @@ export declare const chain: {
|
|
|
6
6
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
blockTime:
|
|
9
|
+
blockTime: 1000;
|
|
10
10
|
contracts: {
|
|
11
11
|
readonly USDC: {
|
|
12
12
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -204,11 +204,12 @@ export declare const chain: {
|
|
|
204
204
|
sourceId: 11155111;
|
|
205
205
|
testnet: true;
|
|
206
206
|
custom?: Record<string, unknown> | undefined;
|
|
207
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
207
208
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
208
209
|
formatters: {
|
|
209
210
|
readonly block: {
|
|
210
211
|
exclude: [] | undefined;
|
|
211
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
212
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
212
213
|
baseFeePerGas: bigint | null;
|
|
213
214
|
blobGasUsed: bigint;
|
|
214
215
|
difficulty: bigint;
|
|
@@ -241,7 +242,7 @@ export declare const chain: {
|
|
|
241
242
|
};
|
|
242
243
|
readonly transaction: {
|
|
243
244
|
exclude: [] | undefined;
|
|
244
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
245
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
245
246
|
blockHash: `0x${string}` | null;
|
|
246
247
|
blockNumber: bigint | null;
|
|
247
248
|
from: import("viem").Address;
|
|
@@ -410,11 +411,12 @@ export declare const chain: {
|
|
|
410
411
|
};
|
|
411
412
|
readonly transactionReceipt: {
|
|
412
413
|
exclude: [] | undefined;
|
|
413
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
414
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
414
415
|
blobGasPrice?: bigint | undefined;
|
|
415
416
|
blobGasUsed?: bigint | undefined;
|
|
416
417
|
blockHash: import("viem").Hash;
|
|
417
418
|
blockNumber: bigint;
|
|
419
|
+
blockTimestamp?: bigint | undefined;
|
|
418
420
|
contractAddress: import("viem").Address | null | undefined;
|
|
419
421
|
cumulativeGasUsed: bigint;
|
|
420
422
|
effectiveGasPrice: bigint;
|
|
@@ -436,9 +438,17 @@ export declare const chain: {
|
|
|
436
438
|
type: "transactionReceipt";
|
|
437
439
|
};
|
|
438
440
|
};
|
|
441
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
442
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
443
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
444
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
445
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
446
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
447
|
+
}] | undefined;
|
|
439
448
|
serializers: {
|
|
440
449
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
441
450
|
};
|
|
451
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
442
452
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
443
453
|
readonly blockchainVm: "EVM";
|
|
444
454
|
};
|
|
@@ -9,6 +9,8 @@ import { chain as ETH } from './ETH.js';
|
|
|
9
9
|
import { chain as ETH_SEPOLIA } from './ETH_SEPOLIA.js';
|
|
10
10
|
import { chain as MATIC } from './MATIC.js';
|
|
11
11
|
import { chain as MATIC_AMOY } from './MATIC_AMOY.js';
|
|
12
|
+
import { chain as MONAD } from './MONAD.js';
|
|
13
|
+
import { chain as MONAD_TESTNET } from './MONAD_TESTNET.js';
|
|
12
14
|
import { chain as NEAR } from './NEAR.js';
|
|
13
15
|
import { chain as NEAR_TESTNET } from './NEAR_TESTNET.js';
|
|
14
16
|
import { chain as OP } from './OP.js';
|
|
@@ -17,5 +19,5 @@ import { chain as SOL } from './SOL.js';
|
|
|
17
19
|
import { chain as SOL_DEVNET } from './SOL_DEVNET.js';
|
|
18
20
|
import { chain as UNI } from './UNI.js';
|
|
19
21
|
import { chain as UNI_SEPOLIA } from './UNI_SEPOLIA.js';
|
|
20
|
-
export { ARB, ARB_SEPOLIA, ARC_TESTNET, AVAX, AVAX_FUJI, ETH, ETH_SEPOLIA, MATIC, MATIC_AMOY, BASE, BASE_SEPOLIA, OP, OP_SEPOLIA, UNI, UNI_SEPOLIA, NEAR, NEAR_TESTNET, SOL, SOL_DEVNET, };
|
|
21
|
-
export type Chain = typeof ARB | typeof ARB_SEPOLIA | typeof ARC_TESTNET | typeof AVAX | typeof AVAX_FUJI | typeof ETH | typeof ETH_SEPOLIA | typeof MATIC | typeof MATIC_AMOY | typeof BASE | typeof BASE_SEPOLIA | typeof OP | typeof OP_SEPOLIA | typeof UNI | typeof UNI_SEPOLIA | typeof NEAR | typeof NEAR_TESTNET | typeof SOL | typeof SOL_DEVNET;
|
|
22
|
+
export { ARB, ARB_SEPOLIA, ARC_TESTNET, AVAX, AVAX_FUJI, ETH, ETH_SEPOLIA, MATIC, MATIC_AMOY, MONAD, MONAD_TESTNET, BASE, BASE_SEPOLIA, OP, OP_SEPOLIA, UNI, UNI_SEPOLIA, NEAR, NEAR_TESTNET, SOL, SOL_DEVNET, };
|
|
23
|
+
export type Chain = typeof ARB | typeof ARB_SEPOLIA | typeof ARC_TESTNET | typeof AVAX | typeof AVAX_FUJI | typeof ETH | typeof ETH_SEPOLIA | typeof MATIC | typeof MATIC_AMOY | typeof MONAD | typeof MONAD_TESTNET | typeof BASE | typeof BASE_SEPOLIA | typeof OP | typeof OP_SEPOLIA | typeof UNI | typeof UNI_SEPOLIA | typeof NEAR | typeof NEAR_TESTNET | typeof SOL | typeof SOL_DEVNET;
|
package/dist/esm/chains/index.js
CHANGED
|
@@ -19,6 +19,8 @@ import { chain as ETH } from './ETH.js';
|
|
|
19
19
|
import { chain as ETH_SEPOLIA } from './ETH_SEPOLIA.js';
|
|
20
20
|
import { chain as MATIC } from './MATIC.js';
|
|
21
21
|
import { chain as MATIC_AMOY } from './MATIC_AMOY.js';
|
|
22
|
+
import { chain as MONAD } from './MONAD.js';
|
|
23
|
+
import { chain as MONAD_TESTNET } from './MONAD_TESTNET.js';
|
|
22
24
|
import { chain as NEAR } from './NEAR.js';
|
|
23
25
|
import { chain as NEAR_TESTNET } from './NEAR_TESTNET.js';
|
|
24
26
|
import { chain as OP } from './OP.js';
|
|
@@ -27,4 +29,4 @@ import { chain as SOL } from './SOL.js';
|
|
|
27
29
|
import { chain as SOL_DEVNET } from './SOL_DEVNET.js';
|
|
28
30
|
import { chain as UNI } from './UNI.js';
|
|
29
31
|
import { chain as UNI_SEPOLIA } from './UNI_SEPOLIA.js';
|
|
30
|
-
export { ARB, ARB_SEPOLIA, ARC_TESTNET, AVAX, AVAX_FUJI, ETH, ETH_SEPOLIA, MATIC, MATIC_AMOY, BASE, BASE_SEPOLIA, OP, OP_SEPOLIA, UNI, UNI_SEPOLIA, NEAR, NEAR_TESTNET, SOL, SOL_DEVNET, };
|
|
32
|
+
export { ARB, ARB_SEPOLIA, ARC_TESTNET, AVAX, AVAX_FUJI, ETH, ETH_SEPOLIA, MATIC, MATIC_AMOY, MONAD, MONAD_TESTNET, BASE, BASE_SEPOLIA, OP, OP_SEPOLIA, UNI, UNI_SEPOLIA, NEAR, NEAR_TESTNET, SOL, SOL_DEVNET, };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Copyright (c) 2025, Circle Internet Group, Inc.
|
|
2
|
+
// All rights reserved.
|
|
3
|
+
//
|
|
4
|
+
// Circle Internet Group, Inc. CONFIDENTIAL
|
|
5
|
+
//
|
|
6
|
+
// This file includes unpublished proprietary source code of Circle Internet
|
|
7
|
+
// Group, Inc. The copyright notice above does not
|
|
8
|
+
// evidence any actual or intended publication of such source code. Disclosure
|
|
9
|
+
// of this source code or any related proprietary information is strictly
|
|
10
|
+
// prohibited without the express written permission of Circle Internet Group, Inc.
|
|
11
|
+
export {};
|
package/dist/esm/client.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Actions as CoreActions } from './actions/index.js';
|
|
2
|
-
import type { Chain } from './chains
|
|
2
|
+
import type { Chain } from './chains.js';
|
|
3
3
|
import type { Actions as CircleWalletsActions } from './providers/circle-wallets/actions/index.js';
|
|
4
4
|
import type { EIP1474Methods as CircleWalletsMethods } from './providers/circle-wallets/transports/index.js';
|
|
5
5
|
import type { Actions as CrossChainTransferProtocolActions } from './providers/cross-chain-transfer-protocol/actions/index.js';
|