@1delta/providers 0.0.44 → 0.0.45
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/{ccip-P6QKYDYG.mjs → ccip-CQYMVZLL.mjs} +1 -1
- package/dist/{chunk-GGVKF6RL.mjs → chunk-B7I6NQ46.mjs} +121 -88
- package/dist/index.d.mts +45 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +576 -485
- package/dist/index.mjs +311 -255
- package/package.json +1 -1
- package/src/chains/chainMapping.ts +3 -0
- package/src/multicall/multicall.ts +11 -3
package/dist/index.d.mts
CHANGED
|
@@ -1478,6 +1478,7 @@ declare function getEvmChain(chain: string): {
|
|
|
1478
1478
|
contracts: {
|
|
1479
1479
|
readonly multicall3: {
|
|
1480
1480
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
1481
|
+
readonly blockCreated: 3908235;
|
|
1481
1482
|
};
|
|
1482
1483
|
readonly erc6492Verifier: {
|
|
1483
1484
|
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
@@ -7089,6 +7090,50 @@ declare function getEvmChain(chain: string): {
|
|
|
7089
7090
|
}] | undefined;
|
|
7090
7091
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7091
7092
|
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7093
|
+
} | {
|
|
7094
|
+
blockExplorers: {
|
|
7095
|
+
readonly default: {
|
|
7096
|
+
readonly name: "ConfluxScan";
|
|
7097
|
+
readonly url: "https://evm.confluxscan.org";
|
|
7098
|
+
};
|
|
7099
|
+
};
|
|
7100
|
+
blockTime?: number | undefined | undefined;
|
|
7101
|
+
contracts: {
|
|
7102
|
+
readonly multicall3: {
|
|
7103
|
+
readonly address: "0xEFf0078910f638cd81996cc117bccD3eDf2B072F";
|
|
7104
|
+
readonly blockCreated: 68602935;
|
|
7105
|
+
};
|
|
7106
|
+
};
|
|
7107
|
+
ensTlds?: readonly string[] | undefined;
|
|
7108
|
+
id: 1030;
|
|
7109
|
+
name: "Conflux eSpace";
|
|
7110
|
+
nativeCurrency: {
|
|
7111
|
+
readonly name: "Conflux";
|
|
7112
|
+
readonly symbol: "CFX";
|
|
7113
|
+
readonly decimals: 18;
|
|
7114
|
+
};
|
|
7115
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7116
|
+
rpcUrls: {
|
|
7117
|
+
readonly default: {
|
|
7118
|
+
readonly http: readonly ["https://evm.confluxrpc.com"];
|
|
7119
|
+
readonly webSocket: readonly ["wss://evm.confluxrpc.com/ws"];
|
|
7120
|
+
};
|
|
7121
|
+
};
|
|
7122
|
+
sourceId?: number | undefined | undefined;
|
|
7123
|
+
testnet?: boolean | undefined | undefined;
|
|
7124
|
+
custom?: Record<string, unknown> | undefined;
|
|
7125
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7126
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
7127
|
+
formatters?: undefined;
|
|
7128
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7129
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7130
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7131
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7132
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7133
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7134
|
+
}] | undefined;
|
|
7135
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7136
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7092
7137
|
} | {
|
|
7093
7138
|
blockExplorers: {
|
|
7094
7139
|
readonly default: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1478,6 +1478,7 @@ declare function getEvmChain(chain: string): {
|
|
|
1478
1478
|
contracts: {
|
|
1479
1479
|
readonly multicall3: {
|
|
1480
1480
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
1481
|
+
readonly blockCreated: 3908235;
|
|
1481
1482
|
};
|
|
1482
1483
|
readonly erc6492Verifier: {
|
|
1483
1484
|
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
@@ -7089,6 +7090,50 @@ declare function getEvmChain(chain: string): {
|
|
|
7089
7090
|
}] | undefined;
|
|
7090
7091
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7091
7092
|
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7093
|
+
} | {
|
|
7094
|
+
blockExplorers: {
|
|
7095
|
+
readonly default: {
|
|
7096
|
+
readonly name: "ConfluxScan";
|
|
7097
|
+
readonly url: "https://evm.confluxscan.org";
|
|
7098
|
+
};
|
|
7099
|
+
};
|
|
7100
|
+
blockTime?: number | undefined | undefined;
|
|
7101
|
+
contracts: {
|
|
7102
|
+
readonly multicall3: {
|
|
7103
|
+
readonly address: "0xEFf0078910f638cd81996cc117bccD3eDf2B072F";
|
|
7104
|
+
readonly blockCreated: 68602935;
|
|
7105
|
+
};
|
|
7106
|
+
};
|
|
7107
|
+
ensTlds?: readonly string[] | undefined;
|
|
7108
|
+
id: 1030;
|
|
7109
|
+
name: "Conflux eSpace";
|
|
7110
|
+
nativeCurrency: {
|
|
7111
|
+
readonly name: "Conflux";
|
|
7112
|
+
readonly symbol: "CFX";
|
|
7113
|
+
readonly decimals: 18;
|
|
7114
|
+
};
|
|
7115
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7116
|
+
rpcUrls: {
|
|
7117
|
+
readonly default: {
|
|
7118
|
+
readonly http: readonly ["https://evm.confluxrpc.com"];
|
|
7119
|
+
readonly webSocket: readonly ["wss://evm.confluxrpc.com/ws"];
|
|
7120
|
+
};
|
|
7121
|
+
};
|
|
7122
|
+
sourceId?: number | undefined | undefined;
|
|
7123
|
+
testnet?: boolean | undefined | undefined;
|
|
7124
|
+
custom?: Record<string, unknown> | undefined;
|
|
7125
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7126
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
7127
|
+
formatters?: undefined;
|
|
7128
|
+
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7129
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7130
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | [fn: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
7131
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7132
|
+
}) => Promise<viem.PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7133
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7134
|
+
}] | undefined;
|
|
7135
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
7136
|
+
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
7092
7137
|
} | {
|
|
7093
7138
|
blockExplorers: {
|
|
7094
7139
|
readonly default: {
|