@dynamic-labs/wagmi-connector 3.0.0-alpha.9 → 3.0.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 +628 -0
- package/package.json +7 -6
- package/src/lib/Connector.d.ts +4091 -57
- package/src/lib/Connector.js +35 -53
- package/src/lib/DynamicWagmiConnector.js +16 -18
- package/src/lib/SyncDynamicWagmi.d.ts +3 -4
- package/src/lib/SyncDynamicWagmi.js +52 -43
- package/src/lib/useChainMismatchLogger.d.ts +2 -2
- package/src/lib/useChainMismatchLogger.js +3 -11
- package/src/lib/hooks/useFindEvmWallet/index.d.ts +0 -1
- package/src/lib/hooks/useFindEvmWallet/useFindEvmWallet.d.ts +0 -2
- package/src/lib/hooks/useFindEvmWallet/useFindEvmWallet.js +0 -22
package/src/lib/Connector.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Account, Transport, Chain } from 'viem';
|
|
3
|
-
import { WalletConnector } from '@dynamic-labs/sdk-react-core';
|
|
1
|
+
import { EthereumWallet } from '@dynamic-labs/ethereum-core';
|
|
4
2
|
export type ConnectorParameters = {
|
|
5
3
|
connectorId: string;
|
|
6
|
-
|
|
7
|
-
walletConnector: WalletConnector;
|
|
8
|
-
preventWagmiSyncFromCallingLogout: MutableRefObject<boolean>;
|
|
4
|
+
wallet: EthereumWallet;
|
|
9
5
|
};
|
|
10
|
-
export declare const getCreateConnectorFn: (
|
|
6
|
+
export declare const getCreateConnectorFn: ({ connectorId, wallet, }: ConnectorParameters) => import("@wagmi/core").CreateConnectorFn<unknown, {
|
|
11
7
|
connect: () => Promise<{
|
|
12
8
|
accounts: readonly `0x${string}`[];
|
|
13
9
|
chainId: number;
|
|
@@ -18,7 +14,7 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
18
14
|
getClient: (args?: {
|
|
19
15
|
chainId?: number;
|
|
20
16
|
} | undefined) => Promise<{
|
|
21
|
-
account: Account;
|
|
17
|
+
account: import("viem").Account;
|
|
22
18
|
batch?: {
|
|
23
19
|
multicall?: boolean | {
|
|
24
20
|
batchSize?: number | undefined;
|
|
@@ -29,7 +25,7 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
29
25
|
ccipRead?: false | {
|
|
30
26
|
request?: ((parameters: import("viem").CcipRequestParameters) => Promise<`0x${string}`>) | undefined;
|
|
31
27
|
} | undefined;
|
|
32
|
-
chain: Chain;
|
|
28
|
+
chain: import("viem").Chain;
|
|
33
29
|
key: string;
|
|
34
30
|
name: string;
|
|
35
31
|
pollingInterval: number;
|
|
@@ -38,15 +34,15 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
38
34
|
type: string;
|
|
39
35
|
uid: string;
|
|
40
36
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
41
|
-
deployContract: <const abi extends import("viem").Abi | readonly unknown[], chainOverride extends Chain | undefined>(args: import("viem").DeployContractParameters<abi, Chain, Account, chainOverride>) => Promise<`0x${string}`>;
|
|
37
|
+
deployContract: <const abi extends import("viem").Abi | readonly unknown[], chainOverride extends import("viem").Chain | undefined>(args: import("viem").DeployContractParameters<abi, import("viem").Chain, import("viem").Account, chainOverride>) => Promise<`0x${string}`>;
|
|
42
38
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
43
39
|
getChainId: () => Promise<number>;
|
|
44
40
|
getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
|
|
45
|
-
prepareTransactionRequest: <const TRequest extends import("viem").PrepareTransactionRequestRequest<Chain, TChainOverride>, TChainOverride extends Chain | undefined = undefined, TAccountOverride extends `0x${string}` | Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account, TChainOverride, TAccountOverride, TRequest>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, TChainOverride> extends infer T_12 ? T_12 extends import("viem").DeriveChain<Chain, TChainOverride> ? T_12 extends Chain ? {
|
|
41
|
+
prepareTransactionRequest: <const TRequest extends import("viem").PrepareTransactionRequestRequest<import("viem").Chain, TChainOverride>, TChainOverride extends import("viem").Chain | undefined = undefined, TAccountOverride extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem").Chain, import("viem").Account, TChainOverride, TAccountOverride, TRequest>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride> extends infer T_12 ? T_12 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride> ? T_12 extends import("viem").Chain ? {
|
|
46
42
|
chain: T_12;
|
|
47
43
|
} : {
|
|
48
44
|
chain?: undefined;
|
|
49
|
-
} : never : never) & (import("viem").DeriveAccount<Account, TAccountOverride> extends infer T_13 ? T_13 extends import("viem").DeriveAccount<Account, TAccountOverride> ? T_13 extends Account ? {
|
|
45
|
+
} : never : never) & (import("viem").DeriveAccount<import("viem").Account, TAccountOverride> extends infer T_13 ? T_13 extends import("viem").DeriveAccount<import("viem").Account, TAccountOverride> ? T_13 extends import("viem").Account ? {
|
|
50
46
|
account: T_13;
|
|
51
47
|
from: `0x${string}`;
|
|
52
48
|
} : {
|
|
@@ -1430,11 +1426,11 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
1430
1426
|
sidecars: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1431
1427
|
}, import("viem").TransactionSerializableEIP4844>)) | import("viem").Opaque<import("viem").TransactionSerializableEIP4844, TRequest> | import("viem").Opaque<import("viem").TransactionRequestEIP4844, TRequest> ? "eip4844" : never) | (TRequest["type"] extends string ? TRequest["type"] : never)>) ? T_21 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never)>> & {
|
|
1432
1428
|
chainId?: number | undefined;
|
|
1433
|
-
}, (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_22 ? T_22 extends (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_22 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_22 : never : never> & (unknown extends TRequest["kzg"] ? {} : Pick<TRequest, "kzg">) extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, TChainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, TChainOverride> ? T_1 extends Chain ? {
|
|
1429
|
+
}, (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_22 ? T_22 extends (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_22 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_22 : never : never> & (unknown extends TRequest["kzg"] ? {} : Pick<TRequest, "kzg">) extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride> ? T_1 extends import("viem").Chain ? {
|
|
1434
1430
|
chain: T_1;
|
|
1435
1431
|
} : {
|
|
1436
1432
|
chain?: undefined;
|
|
1437
|
-
} : never : never) & (import("viem").DeriveAccount<Account, TAccountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account, TAccountOverride> ? T_2 extends Account ? {
|
|
1433
|
+
} : never : never) & (import("viem").DeriveAccount<import("viem").Account, TAccountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<import("viem").Account, TAccountOverride> ? T_2 extends import("viem").Account ? {
|
|
1438
1434
|
account: T_2;
|
|
1439
1435
|
from: `0x${string}`;
|
|
1440
1436
|
} : {
|
|
@@ -2825,12 +2821,10 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
2825
2821
|
eth_accounts: Record<string, any>;
|
|
2826
2822
|
}) => Promise<import("viem").RequestPermissionsReturnType>;
|
|
2827
2823
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
2828
|
-
sendTransaction: <const TRequest_1 extends import("viem").SendTransactionRequest<Chain, TChainOverride_1>, TChainOverride_1 extends Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<Chain, Account, TChainOverride_1, TRequest_1>) => Promise<`0x${string}`>;
|
|
2829
|
-
signMessage: (args: import("viem").SignMessageParameters<Account>) => Promise<`0x${string}`>;
|
|
2830
|
-
signTransaction: <TChainOverride_2 extends Chain | undefined>(args: import("viem").SignTransactionParameters<Chain, Account, TChainOverride_2>) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | import("viem").TransactionSerializedLegacy>;
|
|
2824
|
+
sendTransaction: <const TRequest_1 extends import("viem").SendTransactionRequest<import("viem").Chain, TChainOverride_1>, TChainOverride_1 extends import("viem").Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<import("viem").Chain, import("viem").Account, TChainOverride_1, TRequest_1>) => Promise<`0x${string}`>;
|
|
2825
|
+
signMessage: (args: import("viem").SignMessageParameters<import("viem").Account>) => Promise<`0x${string}`>;
|
|
2826
|
+
signTransaction: <TChainOverride_2 extends import("viem").Chain | undefined>(args: import("viem").SignTransactionParameters<import("viem").Chain, import("viem").Account, TChainOverride_2>) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | import("viem").TransactionSerializedLegacy>;
|
|
2831
2827
|
signTypedData: <const TTypedData extends {
|
|
2832
|
-
[key: string]: unknown;
|
|
2833
|
-
} | {
|
|
2834
2828
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
2835
2829
|
[x: `string[${string}]`]: undefined;
|
|
2836
2830
|
[x: `function[${string}]`]: undefined;
|
|
@@ -3035,10 +3029,12 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
3035
3029
|
uint240?: undefined;
|
|
3036
3030
|
uint248?: undefined;
|
|
3037
3031
|
uint256?: undefined;
|
|
3038
|
-
}
|
|
3032
|
+
} | {
|
|
3033
|
+
[key: string]: unknown;
|
|
3034
|
+
}, TPrimaryType extends string>(args: import("viem").SignTypedDataParameters<TTypedData, TPrimaryType, import("viem").Account>) => Promise<`0x${string}`>;
|
|
3039
3035
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
3040
3036
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
3041
|
-
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "payable" | "nonpayable">, args extends import("viem").ContractFunctionArgs<abi_1, "payable" | "nonpayable", functionName>, TChainOverride_3 extends Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_1, functionName, args, Chain, Account, TChainOverride_3>) => Promise<`0x${string}`>;
|
|
3037
|
+
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "payable" | "nonpayable">, args extends import("viem").ContractFunctionArgs<abi_1, "payable" | "nonpayable", functionName>, TChainOverride_3 extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_1, functionName, args, import("viem").Chain, import("viem").Account, TChainOverride_3>) => Promise<`0x${string}`>;
|
|
3042
3038
|
extend: <const client extends {
|
|
3043
3039
|
[x: string]: unknown;
|
|
3044
3040
|
account?: undefined;
|
|
@@ -3053,11 +3049,235 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
3053
3049
|
transport?: undefined;
|
|
3054
3050
|
type?: undefined;
|
|
3055
3051
|
uid?: undefined;
|
|
3056
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<Transport, Chain, Account>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain, Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<Transport, Chain, Account, import("viem").WalletRpcSchema, import("viem").WalletActions<Chain, Account>>) => client) => import("viem").Client<Transport, Chain, Account, import("viem").WalletRpcSchema, { [K_1 in keyof client]: client[K_1]; } & import("viem").WalletActions<Chain, Account>>;
|
|
3052
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, import("viem").Chain, import("viem").Account>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<import("viem").Chain, import("viem").Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").Transport, import("viem").Chain, import("viem").Account, import("viem").WalletRpcSchema, import("viem").WalletActions<import("viem").Chain, import("viem").Account>>) => client) => import("viem").Client<import("viem").Transport, import("viem").Chain, import("viem").Account, import("viem").WalletRpcSchema, { [K_1 in keyof client]: client[K_1]; } & import("viem").WalletActions<import("viem").Chain, import("viem").Account>>;
|
|
3057
3053
|
} | {
|
|
3058
3054
|
account: {
|
|
3059
3055
|
address: `0x${string}`;
|
|
3060
3056
|
type: "json-rpc";
|
|
3057
|
+
experimental_signAuthMessage?: undefined;
|
|
3058
|
+
signMessage?: undefined;
|
|
3059
|
+
signTransaction?: undefined;
|
|
3060
|
+
signTypedData?: undefined;
|
|
3061
|
+
publicKey?: undefined;
|
|
3062
|
+
source?: undefined;
|
|
3063
|
+
} | {
|
|
3064
|
+
address: `0x${string}`;
|
|
3065
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
3066
|
+
signMessage: ({ message }: {
|
|
3067
|
+
message: import("viem").SignableMessage;
|
|
3068
|
+
}) => Promise<`0x${string}`>;
|
|
3069
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
3070
|
+
serializer?: serializer | undefined;
|
|
3071
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
3072
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
3073
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
3074
|
+
[x: `string[${string}]`]: undefined;
|
|
3075
|
+
[x: `function[${string}]`]: undefined;
|
|
3076
|
+
[x: `address[${string}]`]: undefined;
|
|
3077
|
+
[x: `bool[${string}]`]: undefined;
|
|
3078
|
+
[x: `bytes[${string}]`]: undefined;
|
|
3079
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3080
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
3081
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
3082
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
3083
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3084
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
3085
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
3086
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3087
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3088
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3089
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
3090
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3091
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3092
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3093
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3094
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3095
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3096
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3097
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
3098
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3099
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3100
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3101
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3102
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3103
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3104
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3105
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3106
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3107
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3108
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3109
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3110
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3111
|
+
[x: `int[${string}]`]: undefined;
|
|
3112
|
+
[x: `int8[${string}]`]: undefined;
|
|
3113
|
+
[x: `int16[${string}]`]: undefined;
|
|
3114
|
+
[x: `int24[${string}]`]: undefined;
|
|
3115
|
+
[x: `int32[${string}]`]: undefined;
|
|
3116
|
+
[x: `int40[${string}]`]: undefined;
|
|
3117
|
+
[x: `int48[${string}]`]: undefined;
|
|
3118
|
+
[x: `int56[${string}]`]: undefined;
|
|
3119
|
+
[x: `int64[${string}]`]: undefined;
|
|
3120
|
+
[x: `int72[${string}]`]: undefined;
|
|
3121
|
+
[x: `int80[${string}]`]: undefined;
|
|
3122
|
+
[x: `int88[${string}]`]: undefined;
|
|
3123
|
+
[x: `int96[${string}]`]: undefined;
|
|
3124
|
+
[x: `int104[${string}]`]: undefined;
|
|
3125
|
+
[x: `int112[${string}]`]: undefined;
|
|
3126
|
+
[x: `int120[${string}]`]: undefined;
|
|
3127
|
+
[x: `int128[${string}]`]: undefined;
|
|
3128
|
+
[x: `int136[${string}]`]: undefined;
|
|
3129
|
+
[x: `int144[${string}]`]: undefined;
|
|
3130
|
+
[x: `int152[${string}]`]: undefined;
|
|
3131
|
+
[x: `int160[${string}]`]: undefined;
|
|
3132
|
+
[x: `int168[${string}]`]: undefined;
|
|
3133
|
+
[x: `int176[${string}]`]: undefined;
|
|
3134
|
+
[x: `int184[${string}]`]: undefined;
|
|
3135
|
+
[x: `int192[${string}]`]: undefined;
|
|
3136
|
+
[x: `int200[${string}]`]: undefined;
|
|
3137
|
+
[x: `int208[${string}]`]: undefined;
|
|
3138
|
+
[x: `int216[${string}]`]: undefined;
|
|
3139
|
+
[x: `int224[${string}]`]: undefined;
|
|
3140
|
+
[x: `int232[${string}]`]: undefined;
|
|
3141
|
+
[x: `int240[${string}]`]: undefined;
|
|
3142
|
+
[x: `int248[${string}]`]: undefined;
|
|
3143
|
+
[x: `int256[${string}]`]: undefined;
|
|
3144
|
+
[x: `uint[${string}]`]: undefined;
|
|
3145
|
+
[x: `uint8[${string}]`]: undefined;
|
|
3146
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3147
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3148
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3149
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3150
|
+
[x: `uint48[${string}]`]: undefined;
|
|
3151
|
+
[x: `uint56[${string}]`]: undefined;
|
|
3152
|
+
[x: `uint64[${string}]`]: undefined;
|
|
3153
|
+
[x: `uint72[${string}]`]: undefined;
|
|
3154
|
+
[x: `uint80[${string}]`]: undefined;
|
|
3155
|
+
[x: `uint88[${string}]`]: undefined;
|
|
3156
|
+
[x: `uint96[${string}]`]: undefined;
|
|
3157
|
+
[x: `uint104[${string}]`]: undefined;
|
|
3158
|
+
[x: `uint112[${string}]`]: undefined;
|
|
3159
|
+
[x: `uint120[${string}]`]: undefined;
|
|
3160
|
+
[x: `uint128[${string}]`]: undefined;
|
|
3161
|
+
[x: `uint136[${string}]`]: undefined;
|
|
3162
|
+
[x: `uint144[${string}]`]: undefined;
|
|
3163
|
+
[x: `uint152[${string}]`]: undefined;
|
|
3164
|
+
[x: `uint160[${string}]`]: undefined;
|
|
3165
|
+
[x: `uint168[${string}]`]: undefined;
|
|
3166
|
+
[x: `uint176[${string}]`]: undefined;
|
|
3167
|
+
[x: `uint184[${string}]`]: undefined;
|
|
3168
|
+
[x: `uint192[${string}]`]: undefined;
|
|
3169
|
+
[x: `uint200[${string}]`]: undefined;
|
|
3170
|
+
[x: `uint208[${string}]`]: undefined;
|
|
3171
|
+
[x: `uint216[${string}]`]: undefined;
|
|
3172
|
+
[x: `uint224[${string}]`]: undefined;
|
|
3173
|
+
[x: `uint232[${string}]`]: undefined;
|
|
3174
|
+
[x: `uint240[${string}]`]: undefined;
|
|
3175
|
+
[x: `uint248[${string}]`]: undefined;
|
|
3176
|
+
[x: `uint256[${string}]`]: undefined;
|
|
3177
|
+
string?: undefined;
|
|
3178
|
+
address?: undefined;
|
|
3179
|
+
bool?: undefined;
|
|
3180
|
+
bytes?: undefined;
|
|
3181
|
+
bytes20?: undefined;
|
|
3182
|
+
bytes1?: undefined;
|
|
3183
|
+
bytes2?: undefined;
|
|
3184
|
+
bytes3?: undefined;
|
|
3185
|
+
bytes4?: undefined;
|
|
3186
|
+
bytes5?: undefined;
|
|
3187
|
+
bytes6?: undefined;
|
|
3188
|
+
bytes7?: undefined;
|
|
3189
|
+
bytes8?: undefined;
|
|
3190
|
+
bytes9?: undefined;
|
|
3191
|
+
bytes10?: undefined;
|
|
3192
|
+
bytes11?: undefined;
|
|
3193
|
+
bytes12?: undefined;
|
|
3194
|
+
bytes13?: undefined;
|
|
3195
|
+
bytes14?: undefined;
|
|
3196
|
+
bytes15?: undefined;
|
|
3197
|
+
bytes16?: undefined;
|
|
3198
|
+
bytes17?: undefined;
|
|
3199
|
+
bytes18?: undefined;
|
|
3200
|
+
bytes19?: undefined;
|
|
3201
|
+
bytes21?: undefined;
|
|
3202
|
+
bytes22?: undefined;
|
|
3203
|
+
bytes23?: undefined;
|
|
3204
|
+
bytes24?: undefined;
|
|
3205
|
+
bytes25?: undefined;
|
|
3206
|
+
bytes26?: undefined;
|
|
3207
|
+
bytes27?: undefined;
|
|
3208
|
+
bytes28?: undefined;
|
|
3209
|
+
bytes29?: undefined;
|
|
3210
|
+
bytes30?: undefined;
|
|
3211
|
+
bytes31?: undefined;
|
|
3212
|
+
bytes32?: undefined;
|
|
3213
|
+
int8?: undefined;
|
|
3214
|
+
int16?: undefined;
|
|
3215
|
+
int24?: undefined;
|
|
3216
|
+
int32?: undefined;
|
|
3217
|
+
int40?: undefined;
|
|
3218
|
+
int48?: undefined;
|
|
3219
|
+
int56?: undefined;
|
|
3220
|
+
int64?: undefined;
|
|
3221
|
+
int72?: undefined;
|
|
3222
|
+
int80?: undefined;
|
|
3223
|
+
int88?: undefined;
|
|
3224
|
+
int96?: undefined;
|
|
3225
|
+
int104?: undefined;
|
|
3226
|
+
int112?: undefined;
|
|
3227
|
+
int120?: undefined;
|
|
3228
|
+
int128?: undefined;
|
|
3229
|
+
int136?: undefined;
|
|
3230
|
+
int144?: undefined;
|
|
3231
|
+
int152?: undefined;
|
|
3232
|
+
int160?: undefined;
|
|
3233
|
+
int168?: undefined;
|
|
3234
|
+
int176?: undefined;
|
|
3235
|
+
int184?: undefined;
|
|
3236
|
+
int192?: undefined;
|
|
3237
|
+
int200?: undefined;
|
|
3238
|
+
int208?: undefined;
|
|
3239
|
+
int216?: undefined;
|
|
3240
|
+
int224?: undefined;
|
|
3241
|
+
int232?: undefined;
|
|
3242
|
+
int240?: undefined;
|
|
3243
|
+
int248?: undefined;
|
|
3244
|
+
int256?: undefined;
|
|
3245
|
+
uint8?: undefined;
|
|
3246
|
+
uint16?: undefined;
|
|
3247
|
+
uint24?: undefined;
|
|
3248
|
+
uint32?: undefined;
|
|
3249
|
+
uint40?: undefined;
|
|
3250
|
+
uint48?: undefined;
|
|
3251
|
+
uint56?: undefined;
|
|
3252
|
+
uint64?: undefined;
|
|
3253
|
+
uint72?: undefined;
|
|
3254
|
+
uint80?: undefined;
|
|
3255
|
+
uint88?: undefined;
|
|
3256
|
+
uint96?: undefined;
|
|
3257
|
+
uint104?: undefined;
|
|
3258
|
+
uint112?: undefined;
|
|
3259
|
+
uint120?: undefined;
|
|
3260
|
+
uint128?: undefined;
|
|
3261
|
+
uint136?: undefined;
|
|
3262
|
+
uint144?: undefined;
|
|
3263
|
+
uint152?: undefined;
|
|
3264
|
+
uint160?: undefined;
|
|
3265
|
+
uint168?: undefined;
|
|
3266
|
+
uint176?: undefined;
|
|
3267
|
+
uint184?: undefined;
|
|
3268
|
+
uint192?: undefined;
|
|
3269
|
+
uint200?: undefined;
|
|
3270
|
+
uint208?: undefined;
|
|
3271
|
+
uint216?: undefined;
|
|
3272
|
+
uint224?: undefined;
|
|
3273
|
+
uint232?: undefined;
|
|
3274
|
+
uint240?: undefined;
|
|
3275
|
+
uint248?: undefined;
|
|
3276
|
+
uint256?: undefined;
|
|
3277
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
3278
|
+
publicKey: `0x${string}`;
|
|
3279
|
+
source: string;
|
|
3280
|
+
type: "local";
|
|
3061
3281
|
};
|
|
3062
3282
|
batch?: {
|
|
3063
3283
|
multicall?: boolean | {
|
|
@@ -3069,7 +3289,7 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
3069
3289
|
ccipRead?: false | {
|
|
3070
3290
|
request?: ((parameters: import("viem").CcipRequestParameters) => Promise<`0x${string}`>) | undefined;
|
|
3071
3291
|
} | undefined;
|
|
3072
|
-
chain: Chain;
|
|
3292
|
+
chain: import("viem").Chain;
|
|
3073
3293
|
key: string;
|
|
3074
3294
|
name: string;
|
|
3075
3295
|
pollingInterval: number;
|
|
@@ -3078,27 +3298,923 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
3078
3298
|
type: string;
|
|
3079
3299
|
uid: string;
|
|
3080
3300
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
3081
|
-
deployContract: <const abi_2 extends import("viem").Abi | readonly unknown[], chainOverride_1 extends Chain | undefined>(args: import("viem").DeployContractParameters<abi_2, Chain, {
|
|
3301
|
+
deployContract: <const abi_2 extends import("viem").Abi | readonly unknown[], chainOverride_1 extends import("viem").Chain | undefined>(args: import("viem").DeployContractParameters<abi_2, import("viem").Chain, {
|
|
3082
3302
|
address: `0x${string}`;
|
|
3083
3303
|
type: "json-rpc";
|
|
3304
|
+
experimental_signAuthMessage?: undefined;
|
|
3305
|
+
signMessage?: undefined;
|
|
3306
|
+
signTransaction?: undefined;
|
|
3307
|
+
signTypedData?: undefined;
|
|
3308
|
+
publicKey?: undefined;
|
|
3309
|
+
source?: undefined;
|
|
3310
|
+
} | {
|
|
3311
|
+
address: `0x${string}`;
|
|
3312
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
3313
|
+
signMessage: ({ message }: {
|
|
3314
|
+
message: import("viem").SignableMessage;
|
|
3315
|
+
}) => Promise<`0x${string}`>;
|
|
3316
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
3317
|
+
serializer?: serializer | undefined;
|
|
3318
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
3319
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
3320
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
3321
|
+
[x: `string[${string}]`]: undefined;
|
|
3322
|
+
[x: `function[${string}]`]: undefined;
|
|
3323
|
+
[x: `address[${string}]`]: undefined;
|
|
3324
|
+
[x: `bool[${string}]`]: undefined;
|
|
3325
|
+
[x: `bytes[${string}]`]: undefined;
|
|
3326
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3327
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
3328
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
3329
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
3330
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3331
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
3332
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
3333
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3334
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3335
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3336
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
3337
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3338
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3339
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3340
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3341
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3342
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3343
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3344
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
3345
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3346
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3347
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3348
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3349
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3350
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3351
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3352
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3353
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3354
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3355
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3356
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3357
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3358
|
+
[x: `int[${string}]`]: undefined;
|
|
3359
|
+
[x: `int8[${string}]`]: undefined;
|
|
3360
|
+
[x: `int16[${string}]`]: undefined;
|
|
3361
|
+
[x: `int24[${string}]`]: undefined;
|
|
3362
|
+
[x: `int32[${string}]`]: undefined;
|
|
3363
|
+
[x: `int40[${string}]`]: undefined;
|
|
3364
|
+
[x: `int48[${string}]`]: undefined;
|
|
3365
|
+
[x: `int56[${string}]`]: undefined;
|
|
3366
|
+
[x: `int64[${string}]`]: undefined;
|
|
3367
|
+
[x: `int72[${string}]`]: undefined;
|
|
3368
|
+
[x: `int80[${string}]`]: undefined;
|
|
3369
|
+
[x: `int88[${string}]`]: undefined;
|
|
3370
|
+
[x: `int96[${string}]`]: undefined;
|
|
3371
|
+
[x: `int104[${string}]`]: undefined;
|
|
3372
|
+
[x: `int112[${string}]`]: undefined;
|
|
3373
|
+
[x: `int120[${string}]`]: undefined;
|
|
3374
|
+
[x: `int128[${string}]`]: undefined;
|
|
3375
|
+
[x: `int136[${string}]`]: undefined;
|
|
3376
|
+
[x: `int144[${string}]`]: undefined;
|
|
3377
|
+
[x: `int152[${string}]`]: undefined;
|
|
3378
|
+
[x: `int160[${string}]`]: undefined;
|
|
3379
|
+
[x: `int168[${string}]`]: undefined;
|
|
3380
|
+
[x: `int176[${string}]`]: undefined;
|
|
3381
|
+
[x: `int184[${string}]`]: undefined;
|
|
3382
|
+
[x: `int192[${string}]`]: undefined;
|
|
3383
|
+
[x: `int200[${string}]`]: undefined;
|
|
3384
|
+
[x: `int208[${string}]`]: undefined;
|
|
3385
|
+
[x: `int216[${string}]`]: undefined;
|
|
3386
|
+
[x: `int224[${string}]`]: undefined;
|
|
3387
|
+
[x: `int232[${string}]`]: undefined;
|
|
3388
|
+
[x: `int240[${string}]`]: undefined;
|
|
3389
|
+
[x: `int248[${string}]`]: undefined;
|
|
3390
|
+
[x: `int256[${string}]`]: undefined;
|
|
3391
|
+
[x: `uint[${string}]`]: undefined;
|
|
3392
|
+
[x: `uint8[${string}]`]: undefined;
|
|
3393
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3394
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3395
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3396
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3397
|
+
[x: `uint48[${string}]`]: undefined;
|
|
3398
|
+
[x: `uint56[${string}]`]: undefined;
|
|
3399
|
+
[x: `uint64[${string}]`]: undefined;
|
|
3400
|
+
[x: `uint72[${string}]`]: undefined;
|
|
3401
|
+
[x: `uint80[${string}]`]: undefined;
|
|
3402
|
+
[x: `uint88[${string}]`]: undefined;
|
|
3403
|
+
[x: `uint96[${string}]`]: undefined;
|
|
3404
|
+
[x: `uint104[${string}]`]: undefined;
|
|
3405
|
+
[x: `uint112[${string}]`]: undefined;
|
|
3406
|
+
[x: `uint120[${string}]`]: undefined;
|
|
3407
|
+
[x: `uint128[${string}]`]: undefined;
|
|
3408
|
+
[x: `uint136[${string}]`]: undefined;
|
|
3409
|
+
[x: `uint144[${string}]`]: undefined;
|
|
3410
|
+
[x: `uint152[${string}]`]: undefined;
|
|
3411
|
+
[x: `uint160[${string}]`]: undefined;
|
|
3412
|
+
[x: `uint168[${string}]`]: undefined;
|
|
3413
|
+
[x: `uint176[${string}]`]: undefined;
|
|
3414
|
+
[x: `uint184[${string}]`]: undefined;
|
|
3415
|
+
[x: `uint192[${string}]`]: undefined;
|
|
3416
|
+
[x: `uint200[${string}]`]: undefined;
|
|
3417
|
+
[x: `uint208[${string}]`]: undefined;
|
|
3418
|
+
[x: `uint216[${string}]`]: undefined;
|
|
3419
|
+
[x: `uint224[${string}]`]: undefined;
|
|
3420
|
+
[x: `uint232[${string}]`]: undefined;
|
|
3421
|
+
[x: `uint240[${string}]`]: undefined;
|
|
3422
|
+
[x: `uint248[${string}]`]: undefined;
|
|
3423
|
+
[x: `uint256[${string}]`]: undefined;
|
|
3424
|
+
string?: undefined;
|
|
3425
|
+
address?: undefined;
|
|
3426
|
+
bool?: undefined;
|
|
3427
|
+
bytes?: undefined;
|
|
3428
|
+
bytes20?: undefined;
|
|
3429
|
+
bytes1?: undefined;
|
|
3430
|
+
bytes2?: undefined;
|
|
3431
|
+
bytes3?: undefined;
|
|
3432
|
+
bytes4?: undefined;
|
|
3433
|
+
bytes5?: undefined;
|
|
3434
|
+
bytes6?: undefined;
|
|
3435
|
+
bytes7?: undefined;
|
|
3436
|
+
bytes8?: undefined;
|
|
3437
|
+
bytes9?: undefined;
|
|
3438
|
+
bytes10?: undefined;
|
|
3439
|
+
bytes11?: undefined;
|
|
3440
|
+
bytes12?: undefined;
|
|
3441
|
+
bytes13?: undefined;
|
|
3442
|
+
bytes14?: undefined;
|
|
3443
|
+
bytes15?: undefined;
|
|
3444
|
+
bytes16?: undefined;
|
|
3445
|
+
bytes17?: undefined;
|
|
3446
|
+
bytes18?: undefined;
|
|
3447
|
+
bytes19?: undefined;
|
|
3448
|
+
bytes21?: undefined;
|
|
3449
|
+
bytes22?: undefined;
|
|
3450
|
+
bytes23?: undefined;
|
|
3451
|
+
bytes24?: undefined;
|
|
3452
|
+
bytes25?: undefined;
|
|
3453
|
+
bytes26?: undefined;
|
|
3454
|
+
bytes27?: undefined;
|
|
3455
|
+
bytes28?: undefined;
|
|
3456
|
+
bytes29?: undefined;
|
|
3457
|
+
bytes30?: undefined;
|
|
3458
|
+
bytes31?: undefined;
|
|
3459
|
+
bytes32?: undefined;
|
|
3460
|
+
int8?: undefined;
|
|
3461
|
+
int16?: undefined;
|
|
3462
|
+
int24?: undefined;
|
|
3463
|
+
int32?: undefined;
|
|
3464
|
+
int40?: undefined;
|
|
3465
|
+
int48?: undefined;
|
|
3466
|
+
int56?: undefined;
|
|
3467
|
+
int64?: undefined;
|
|
3468
|
+
int72?: undefined;
|
|
3469
|
+
int80?: undefined;
|
|
3470
|
+
int88?: undefined;
|
|
3471
|
+
int96?: undefined;
|
|
3472
|
+
int104?: undefined;
|
|
3473
|
+
int112?: undefined;
|
|
3474
|
+
int120?: undefined;
|
|
3475
|
+
int128?: undefined;
|
|
3476
|
+
int136?: undefined;
|
|
3477
|
+
int144?: undefined;
|
|
3478
|
+
int152?: undefined;
|
|
3479
|
+
int160?: undefined;
|
|
3480
|
+
int168?: undefined;
|
|
3481
|
+
int176?: undefined;
|
|
3482
|
+
int184?: undefined;
|
|
3483
|
+
int192?: undefined;
|
|
3484
|
+
int200?: undefined;
|
|
3485
|
+
int208?: undefined;
|
|
3486
|
+
int216?: undefined;
|
|
3487
|
+
int224?: undefined;
|
|
3488
|
+
int232?: undefined;
|
|
3489
|
+
int240?: undefined;
|
|
3490
|
+
int248?: undefined;
|
|
3491
|
+
int256?: undefined;
|
|
3492
|
+
uint8?: undefined;
|
|
3493
|
+
uint16?: undefined;
|
|
3494
|
+
uint24?: undefined;
|
|
3495
|
+
uint32?: undefined;
|
|
3496
|
+
uint40?: undefined;
|
|
3497
|
+
uint48?: undefined;
|
|
3498
|
+
uint56?: undefined;
|
|
3499
|
+
uint64?: undefined;
|
|
3500
|
+
uint72?: undefined;
|
|
3501
|
+
uint80?: undefined;
|
|
3502
|
+
uint88?: undefined;
|
|
3503
|
+
uint96?: undefined;
|
|
3504
|
+
uint104?: undefined;
|
|
3505
|
+
uint112?: undefined;
|
|
3506
|
+
uint120?: undefined;
|
|
3507
|
+
uint128?: undefined;
|
|
3508
|
+
uint136?: undefined;
|
|
3509
|
+
uint144?: undefined;
|
|
3510
|
+
uint152?: undefined;
|
|
3511
|
+
uint160?: undefined;
|
|
3512
|
+
uint168?: undefined;
|
|
3513
|
+
uint176?: undefined;
|
|
3514
|
+
uint184?: undefined;
|
|
3515
|
+
uint192?: undefined;
|
|
3516
|
+
uint200?: undefined;
|
|
3517
|
+
uint208?: undefined;
|
|
3518
|
+
uint216?: undefined;
|
|
3519
|
+
uint224?: undefined;
|
|
3520
|
+
uint232?: undefined;
|
|
3521
|
+
uint240?: undefined;
|
|
3522
|
+
uint248?: undefined;
|
|
3523
|
+
uint256?: undefined;
|
|
3524
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
3525
|
+
publicKey: `0x${string}`;
|
|
3526
|
+
source: string;
|
|
3527
|
+
type: "local";
|
|
3084
3528
|
}, chainOverride_1>) => Promise<`0x${string}`>;
|
|
3085
3529
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
3086
3530
|
getChainId: () => Promise<number>;
|
|
3087
3531
|
getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
|
|
3088
|
-
prepareTransactionRequest: <const TRequest_2 extends import("viem").PrepareTransactionRequestRequest<Chain, TChainOverride_4>, TChainOverride_4 extends Chain | undefined = undefined, TAccountOverride_1 extends `0x${string}` | Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, {
|
|
3532
|
+
prepareTransactionRequest: <const TRequest_2 extends import("viem").PrepareTransactionRequestRequest<import("viem").Chain, TChainOverride_4>, TChainOverride_4 extends import("viem").Chain | undefined = undefined, TAccountOverride_1 extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem").Chain, {
|
|
3089
3533
|
address: `0x${string}`;
|
|
3090
3534
|
type: "json-rpc";
|
|
3091
|
-
|
|
3535
|
+
experimental_signAuthMessage?: undefined;
|
|
3536
|
+
signMessage?: undefined;
|
|
3537
|
+
signTransaction?: undefined;
|
|
3538
|
+
signTypedData?: undefined;
|
|
3539
|
+
publicKey?: undefined;
|
|
3540
|
+
source?: undefined;
|
|
3541
|
+
} | {
|
|
3542
|
+
address: `0x${string}`;
|
|
3543
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
3544
|
+
signMessage: ({ message }: {
|
|
3545
|
+
message: import("viem").SignableMessage;
|
|
3546
|
+
}) => Promise<`0x${string}`>;
|
|
3547
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
3548
|
+
serializer?: serializer | undefined;
|
|
3549
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
3550
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
3551
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
3552
|
+
[x: `string[${string}]`]: undefined;
|
|
3553
|
+
[x: `function[${string}]`]: undefined;
|
|
3554
|
+
[x: `address[${string}]`]: undefined;
|
|
3555
|
+
[x: `bool[${string}]`]: undefined;
|
|
3556
|
+
[x: `bytes[${string}]`]: undefined;
|
|
3557
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3558
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
3559
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
3560
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
3561
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3562
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
3563
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
3564
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3565
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3566
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3567
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
3568
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3569
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3570
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3571
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3572
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3573
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3574
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3575
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
3576
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3577
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3578
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3579
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3580
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3581
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3582
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3583
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3584
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3585
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3586
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3587
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3588
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3589
|
+
[x: `int[${string}]`]: undefined;
|
|
3590
|
+
[x: `int8[${string}]`]: undefined;
|
|
3591
|
+
[x: `int16[${string}]`]: undefined;
|
|
3592
|
+
[x: `int24[${string}]`]: undefined;
|
|
3593
|
+
[x: `int32[${string}]`]: undefined;
|
|
3594
|
+
[x: `int40[${string}]`]: undefined;
|
|
3595
|
+
[x: `int48[${string}]`]: undefined;
|
|
3596
|
+
[x: `int56[${string}]`]: undefined;
|
|
3597
|
+
[x: `int64[${string}]`]: undefined;
|
|
3598
|
+
[x: `int72[${string}]`]: undefined;
|
|
3599
|
+
[x: `int80[${string}]`]: undefined;
|
|
3600
|
+
[x: `int88[${string}]`]: undefined;
|
|
3601
|
+
[x: `int96[${string}]`]: undefined;
|
|
3602
|
+
[x: `int104[${string}]`]: undefined;
|
|
3603
|
+
[x: `int112[${string}]`]: undefined;
|
|
3604
|
+
[x: `int120[${string}]`]: undefined;
|
|
3605
|
+
[x: `int128[${string}]`]: undefined;
|
|
3606
|
+
[x: `int136[${string}]`]: undefined;
|
|
3607
|
+
[x: `int144[${string}]`]: undefined;
|
|
3608
|
+
[x: `int152[${string}]`]: undefined;
|
|
3609
|
+
[x: `int160[${string}]`]: undefined;
|
|
3610
|
+
[x: `int168[${string}]`]: undefined;
|
|
3611
|
+
[x: `int176[${string}]`]: undefined;
|
|
3612
|
+
[x: `int184[${string}]`]: undefined;
|
|
3613
|
+
[x: `int192[${string}]`]: undefined;
|
|
3614
|
+
[x: `int200[${string}]`]: undefined;
|
|
3615
|
+
[x: `int208[${string}]`]: undefined;
|
|
3616
|
+
[x: `int216[${string}]`]: undefined;
|
|
3617
|
+
[x: `int224[${string}]`]: undefined;
|
|
3618
|
+
[x: `int232[${string}]`]: undefined;
|
|
3619
|
+
[x: `int240[${string}]`]: undefined;
|
|
3620
|
+
[x: `int248[${string}]`]: undefined;
|
|
3621
|
+
[x: `int256[${string}]`]: undefined;
|
|
3622
|
+
[x: `uint[${string}]`]: undefined;
|
|
3623
|
+
[x: `uint8[${string}]`]: undefined;
|
|
3624
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3625
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3626
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3627
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3628
|
+
[x: `uint48[${string}]`]: undefined;
|
|
3629
|
+
[x: `uint56[${string}]`]: undefined;
|
|
3630
|
+
[x: `uint64[${string}]`]: undefined;
|
|
3631
|
+
[x: `uint72[${string}]`]: undefined;
|
|
3632
|
+
[x: `uint80[${string}]`]: undefined;
|
|
3633
|
+
[x: `uint88[${string}]`]: undefined;
|
|
3634
|
+
[x: `uint96[${string}]`]: undefined;
|
|
3635
|
+
[x: `uint104[${string}]`]: undefined;
|
|
3636
|
+
[x: `uint112[${string}]`]: undefined;
|
|
3637
|
+
[x: `uint120[${string}]`]: undefined;
|
|
3638
|
+
[x: `uint128[${string}]`]: undefined;
|
|
3639
|
+
[x: `uint136[${string}]`]: undefined;
|
|
3640
|
+
[x: `uint144[${string}]`]: undefined;
|
|
3641
|
+
[x: `uint152[${string}]`]: undefined;
|
|
3642
|
+
[x: `uint160[${string}]`]: undefined;
|
|
3643
|
+
[x: `uint168[${string}]`]: undefined;
|
|
3644
|
+
[x: `uint176[${string}]`]: undefined;
|
|
3645
|
+
[x: `uint184[${string}]`]: undefined;
|
|
3646
|
+
[x: `uint192[${string}]`]: undefined;
|
|
3647
|
+
[x: `uint200[${string}]`]: undefined;
|
|
3648
|
+
[x: `uint208[${string}]`]: undefined;
|
|
3649
|
+
[x: `uint216[${string}]`]: undefined;
|
|
3650
|
+
[x: `uint224[${string}]`]: undefined;
|
|
3651
|
+
[x: `uint232[${string}]`]: undefined;
|
|
3652
|
+
[x: `uint240[${string}]`]: undefined;
|
|
3653
|
+
[x: `uint248[${string}]`]: undefined;
|
|
3654
|
+
[x: `uint256[${string}]`]: undefined;
|
|
3655
|
+
string?: undefined;
|
|
3656
|
+
address?: undefined;
|
|
3657
|
+
bool?: undefined;
|
|
3658
|
+
bytes?: undefined;
|
|
3659
|
+
bytes20?: undefined;
|
|
3660
|
+
bytes1?: undefined;
|
|
3661
|
+
bytes2?: undefined;
|
|
3662
|
+
bytes3?: undefined;
|
|
3663
|
+
bytes4?: undefined;
|
|
3664
|
+
bytes5?: undefined;
|
|
3665
|
+
bytes6?: undefined;
|
|
3666
|
+
bytes7?: undefined;
|
|
3667
|
+
bytes8?: undefined;
|
|
3668
|
+
bytes9?: undefined;
|
|
3669
|
+
bytes10?: undefined;
|
|
3670
|
+
bytes11?: undefined;
|
|
3671
|
+
bytes12?: undefined;
|
|
3672
|
+
bytes13?: undefined;
|
|
3673
|
+
bytes14?: undefined;
|
|
3674
|
+
bytes15?: undefined;
|
|
3675
|
+
bytes16?: undefined;
|
|
3676
|
+
bytes17?: undefined;
|
|
3677
|
+
bytes18?: undefined;
|
|
3678
|
+
bytes19?: undefined;
|
|
3679
|
+
bytes21?: undefined;
|
|
3680
|
+
bytes22?: undefined;
|
|
3681
|
+
bytes23?: undefined;
|
|
3682
|
+
bytes24?: undefined;
|
|
3683
|
+
bytes25?: undefined;
|
|
3684
|
+
bytes26?: undefined;
|
|
3685
|
+
bytes27?: undefined;
|
|
3686
|
+
bytes28?: undefined;
|
|
3687
|
+
bytes29?: undefined;
|
|
3688
|
+
bytes30?: undefined;
|
|
3689
|
+
bytes31?: undefined;
|
|
3690
|
+
bytes32?: undefined;
|
|
3691
|
+
int8?: undefined;
|
|
3692
|
+
int16?: undefined;
|
|
3693
|
+
int24?: undefined;
|
|
3694
|
+
int32?: undefined;
|
|
3695
|
+
int40?: undefined;
|
|
3696
|
+
int48?: undefined;
|
|
3697
|
+
int56?: undefined;
|
|
3698
|
+
int64?: undefined;
|
|
3699
|
+
int72?: undefined;
|
|
3700
|
+
int80?: undefined;
|
|
3701
|
+
int88?: undefined;
|
|
3702
|
+
int96?: undefined;
|
|
3703
|
+
int104?: undefined;
|
|
3704
|
+
int112?: undefined;
|
|
3705
|
+
int120?: undefined;
|
|
3706
|
+
int128?: undefined;
|
|
3707
|
+
int136?: undefined;
|
|
3708
|
+
int144?: undefined;
|
|
3709
|
+
int152?: undefined;
|
|
3710
|
+
int160?: undefined;
|
|
3711
|
+
int168?: undefined;
|
|
3712
|
+
int176?: undefined;
|
|
3713
|
+
int184?: undefined;
|
|
3714
|
+
int192?: undefined;
|
|
3715
|
+
int200?: undefined;
|
|
3716
|
+
int208?: undefined;
|
|
3717
|
+
int216?: undefined;
|
|
3718
|
+
int224?: undefined;
|
|
3719
|
+
int232?: undefined;
|
|
3720
|
+
int240?: undefined;
|
|
3721
|
+
int248?: undefined;
|
|
3722
|
+
int256?: undefined;
|
|
3723
|
+
uint8?: undefined;
|
|
3724
|
+
uint16?: undefined;
|
|
3725
|
+
uint24?: undefined;
|
|
3726
|
+
uint32?: undefined;
|
|
3727
|
+
uint40?: undefined;
|
|
3728
|
+
uint48?: undefined;
|
|
3729
|
+
uint56?: undefined;
|
|
3730
|
+
uint64?: undefined;
|
|
3731
|
+
uint72?: undefined;
|
|
3732
|
+
uint80?: undefined;
|
|
3733
|
+
uint88?: undefined;
|
|
3734
|
+
uint96?: undefined;
|
|
3735
|
+
uint104?: undefined;
|
|
3736
|
+
uint112?: undefined;
|
|
3737
|
+
uint120?: undefined;
|
|
3738
|
+
uint128?: undefined;
|
|
3739
|
+
uint136?: undefined;
|
|
3740
|
+
uint144?: undefined;
|
|
3741
|
+
uint152?: undefined;
|
|
3742
|
+
uint160?: undefined;
|
|
3743
|
+
uint168?: undefined;
|
|
3744
|
+
uint176?: undefined;
|
|
3745
|
+
uint184?: undefined;
|
|
3746
|
+
uint192?: undefined;
|
|
3747
|
+
uint200?: undefined;
|
|
3748
|
+
uint208?: undefined;
|
|
3749
|
+
uint216?: undefined;
|
|
3750
|
+
uint224?: undefined;
|
|
3751
|
+
uint232?: undefined;
|
|
3752
|
+
uint240?: undefined;
|
|
3753
|
+
uint248?: undefined;
|
|
3754
|
+
uint256?: undefined;
|
|
3755
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
3756
|
+
publicKey: `0x${string}`;
|
|
3757
|
+
source: string;
|
|
3758
|
+
type: "local";
|
|
3759
|
+
}, TChainOverride_4, TAccountOverride_1, TRequest_2>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride_4>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride_4> extends infer T_35 ? T_35 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride_4> ? T_35 extends import("viem").Chain ? {
|
|
3092
3760
|
chain: T_35;
|
|
3093
3761
|
} : {
|
|
3094
3762
|
chain?: undefined;
|
|
3095
3763
|
} : never : never) & (import("viem").DeriveAccount<{
|
|
3096
3764
|
address: `0x${string}`;
|
|
3097
3765
|
type: "json-rpc";
|
|
3766
|
+
experimental_signAuthMessage?: undefined;
|
|
3767
|
+
signMessage?: undefined;
|
|
3768
|
+
signTransaction?: undefined;
|
|
3769
|
+
signTypedData?: undefined;
|
|
3770
|
+
publicKey?: undefined;
|
|
3771
|
+
source?: undefined;
|
|
3772
|
+
} | {
|
|
3773
|
+
address: `0x${string}`;
|
|
3774
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
3775
|
+
signMessage: ({ message }: {
|
|
3776
|
+
message: import("viem").SignableMessage;
|
|
3777
|
+
}) => Promise<`0x${string}`>;
|
|
3778
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
3779
|
+
serializer?: serializer | undefined;
|
|
3780
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
3781
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
3782
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
3783
|
+
[x: `string[${string}]`]: undefined;
|
|
3784
|
+
[x: `function[${string}]`]: undefined;
|
|
3785
|
+
[x: `address[${string}]`]: undefined;
|
|
3786
|
+
[x: `bool[${string}]`]: undefined;
|
|
3787
|
+
[x: `bytes[${string}]`]: undefined;
|
|
3788
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3789
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
3790
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
3791
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
3792
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3793
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
3794
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
3795
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3796
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3797
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3798
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
3799
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3800
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3801
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3802
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3803
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3804
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3805
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3806
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
3807
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3808
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3809
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3810
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3811
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3812
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3813
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3814
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3815
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3816
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3817
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3818
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3819
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3820
|
+
[x: `int[${string}]`]: undefined;
|
|
3821
|
+
[x: `int8[${string}]`]: undefined;
|
|
3822
|
+
[x: `int16[${string}]`]: undefined;
|
|
3823
|
+
[x: `int24[${string}]`]: undefined;
|
|
3824
|
+
[x: `int32[${string}]`]: undefined;
|
|
3825
|
+
[x: `int40[${string}]`]: undefined;
|
|
3826
|
+
[x: `int48[${string}]`]: undefined;
|
|
3827
|
+
[x: `int56[${string}]`]: undefined;
|
|
3828
|
+
[x: `int64[${string}]`]: undefined;
|
|
3829
|
+
[x: `int72[${string}]`]: undefined;
|
|
3830
|
+
[x: `int80[${string}]`]: undefined;
|
|
3831
|
+
[x: `int88[${string}]`]: undefined;
|
|
3832
|
+
[x: `int96[${string}]`]: undefined;
|
|
3833
|
+
[x: `int104[${string}]`]: undefined;
|
|
3834
|
+
[x: `int112[${string}]`]: undefined;
|
|
3835
|
+
[x: `int120[${string}]`]: undefined;
|
|
3836
|
+
[x: `int128[${string}]`]: undefined;
|
|
3837
|
+
[x: `int136[${string}]`]: undefined;
|
|
3838
|
+
[x: `int144[${string}]`]: undefined;
|
|
3839
|
+
[x: `int152[${string}]`]: undefined;
|
|
3840
|
+
[x: `int160[${string}]`]: undefined;
|
|
3841
|
+
[x: `int168[${string}]`]: undefined;
|
|
3842
|
+
[x: `int176[${string}]`]: undefined;
|
|
3843
|
+
[x: `int184[${string}]`]: undefined;
|
|
3844
|
+
[x: `int192[${string}]`]: undefined;
|
|
3845
|
+
[x: `int200[${string}]`]: undefined;
|
|
3846
|
+
[x: `int208[${string}]`]: undefined;
|
|
3847
|
+
[x: `int216[${string}]`]: undefined;
|
|
3848
|
+
[x: `int224[${string}]`]: undefined;
|
|
3849
|
+
[x: `int232[${string}]`]: undefined;
|
|
3850
|
+
[x: `int240[${string}]`]: undefined;
|
|
3851
|
+
[x: `int248[${string}]`]: undefined;
|
|
3852
|
+
[x: `int256[${string}]`]: undefined;
|
|
3853
|
+
[x: `uint[${string}]`]: undefined;
|
|
3854
|
+
[x: `uint8[${string}]`]: undefined;
|
|
3855
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3856
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3857
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3858
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3859
|
+
[x: `uint48[${string}]`]: undefined;
|
|
3860
|
+
[x: `uint56[${string}]`]: undefined;
|
|
3861
|
+
[x: `uint64[${string}]`]: undefined;
|
|
3862
|
+
[x: `uint72[${string}]`]: undefined;
|
|
3863
|
+
[x: `uint80[${string}]`]: undefined;
|
|
3864
|
+
[x: `uint88[${string}]`]: undefined;
|
|
3865
|
+
[x: `uint96[${string}]`]: undefined;
|
|
3866
|
+
[x: `uint104[${string}]`]: undefined;
|
|
3867
|
+
[x: `uint112[${string}]`]: undefined;
|
|
3868
|
+
[x: `uint120[${string}]`]: undefined;
|
|
3869
|
+
[x: `uint128[${string}]`]: undefined;
|
|
3870
|
+
[x: `uint136[${string}]`]: undefined;
|
|
3871
|
+
[x: `uint144[${string}]`]: undefined;
|
|
3872
|
+
[x: `uint152[${string}]`]: undefined;
|
|
3873
|
+
[x: `uint160[${string}]`]: undefined;
|
|
3874
|
+
[x: `uint168[${string}]`]: undefined;
|
|
3875
|
+
[x: `uint176[${string}]`]: undefined;
|
|
3876
|
+
[x: `uint184[${string}]`]: undefined;
|
|
3877
|
+
[x: `uint192[${string}]`]: undefined;
|
|
3878
|
+
[x: `uint200[${string}]`]: undefined;
|
|
3879
|
+
[x: `uint208[${string}]`]: undefined;
|
|
3880
|
+
[x: `uint216[${string}]`]: undefined;
|
|
3881
|
+
[x: `uint224[${string}]`]: undefined;
|
|
3882
|
+
[x: `uint232[${string}]`]: undefined;
|
|
3883
|
+
[x: `uint240[${string}]`]: undefined;
|
|
3884
|
+
[x: `uint248[${string}]`]: undefined;
|
|
3885
|
+
[x: `uint256[${string}]`]: undefined;
|
|
3886
|
+
string?: undefined;
|
|
3887
|
+
address?: undefined;
|
|
3888
|
+
bool?: undefined;
|
|
3889
|
+
bytes?: undefined;
|
|
3890
|
+
bytes20?: undefined;
|
|
3891
|
+
bytes1?: undefined;
|
|
3892
|
+
bytes2?: undefined;
|
|
3893
|
+
bytes3?: undefined;
|
|
3894
|
+
bytes4?: undefined;
|
|
3895
|
+
bytes5?: undefined;
|
|
3896
|
+
bytes6?: undefined;
|
|
3897
|
+
bytes7?: undefined;
|
|
3898
|
+
bytes8?: undefined;
|
|
3899
|
+
bytes9?: undefined;
|
|
3900
|
+
bytes10?: undefined;
|
|
3901
|
+
bytes11?: undefined;
|
|
3902
|
+
bytes12?: undefined;
|
|
3903
|
+
bytes13?: undefined;
|
|
3904
|
+
bytes14?: undefined;
|
|
3905
|
+
bytes15?: undefined;
|
|
3906
|
+
bytes16?: undefined;
|
|
3907
|
+
bytes17?: undefined;
|
|
3908
|
+
bytes18?: undefined;
|
|
3909
|
+
bytes19?: undefined;
|
|
3910
|
+
bytes21?: undefined;
|
|
3911
|
+
bytes22?: undefined;
|
|
3912
|
+
bytes23?: undefined;
|
|
3913
|
+
bytes24?: undefined;
|
|
3914
|
+
bytes25?: undefined;
|
|
3915
|
+
bytes26?: undefined;
|
|
3916
|
+
bytes27?: undefined;
|
|
3917
|
+
bytes28?: undefined;
|
|
3918
|
+
bytes29?: undefined;
|
|
3919
|
+
bytes30?: undefined;
|
|
3920
|
+
bytes31?: undefined;
|
|
3921
|
+
bytes32?: undefined;
|
|
3922
|
+
int8?: undefined;
|
|
3923
|
+
int16?: undefined;
|
|
3924
|
+
int24?: undefined;
|
|
3925
|
+
int32?: undefined;
|
|
3926
|
+
int40?: undefined;
|
|
3927
|
+
int48?: undefined;
|
|
3928
|
+
int56?: undefined;
|
|
3929
|
+
int64?: undefined;
|
|
3930
|
+
int72?: undefined;
|
|
3931
|
+
int80?: undefined;
|
|
3932
|
+
int88?: undefined;
|
|
3933
|
+
int96?: undefined;
|
|
3934
|
+
int104?: undefined;
|
|
3935
|
+
int112?: undefined;
|
|
3936
|
+
int120?: undefined;
|
|
3937
|
+
int128?: undefined;
|
|
3938
|
+
int136?: undefined;
|
|
3939
|
+
int144?: undefined;
|
|
3940
|
+
int152?: undefined;
|
|
3941
|
+
int160?: undefined;
|
|
3942
|
+
int168?: undefined;
|
|
3943
|
+
int176?: undefined;
|
|
3944
|
+
int184?: undefined;
|
|
3945
|
+
int192?: undefined;
|
|
3946
|
+
int200?: undefined;
|
|
3947
|
+
int208?: undefined;
|
|
3948
|
+
int216?: undefined;
|
|
3949
|
+
int224?: undefined;
|
|
3950
|
+
int232?: undefined;
|
|
3951
|
+
int240?: undefined;
|
|
3952
|
+
int248?: undefined;
|
|
3953
|
+
int256?: undefined;
|
|
3954
|
+
uint8?: undefined;
|
|
3955
|
+
uint16?: undefined;
|
|
3956
|
+
uint24?: undefined;
|
|
3957
|
+
uint32?: undefined;
|
|
3958
|
+
uint40?: undefined;
|
|
3959
|
+
uint48?: undefined;
|
|
3960
|
+
uint56?: undefined;
|
|
3961
|
+
uint64?: undefined;
|
|
3962
|
+
uint72?: undefined;
|
|
3963
|
+
uint80?: undefined;
|
|
3964
|
+
uint88?: undefined;
|
|
3965
|
+
uint96?: undefined;
|
|
3966
|
+
uint104?: undefined;
|
|
3967
|
+
uint112?: undefined;
|
|
3968
|
+
uint120?: undefined;
|
|
3969
|
+
uint128?: undefined;
|
|
3970
|
+
uint136?: undefined;
|
|
3971
|
+
uint144?: undefined;
|
|
3972
|
+
uint152?: undefined;
|
|
3973
|
+
uint160?: undefined;
|
|
3974
|
+
uint168?: undefined;
|
|
3975
|
+
uint176?: undefined;
|
|
3976
|
+
uint184?: undefined;
|
|
3977
|
+
uint192?: undefined;
|
|
3978
|
+
uint200?: undefined;
|
|
3979
|
+
uint208?: undefined;
|
|
3980
|
+
uint216?: undefined;
|
|
3981
|
+
uint224?: undefined;
|
|
3982
|
+
uint232?: undefined;
|
|
3983
|
+
uint240?: undefined;
|
|
3984
|
+
uint248?: undefined;
|
|
3985
|
+
uint256?: undefined;
|
|
3986
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
3987
|
+
publicKey: `0x${string}`;
|
|
3988
|
+
source: string;
|
|
3989
|
+
type: "local";
|
|
3098
3990
|
}, TAccountOverride_1> extends infer T_36 ? T_36 extends import("viem").DeriveAccount<{
|
|
3099
3991
|
address: `0x${string}`;
|
|
3100
3992
|
type: "json-rpc";
|
|
3101
|
-
|
|
3993
|
+
experimental_signAuthMessage?: undefined;
|
|
3994
|
+
signMessage?: undefined;
|
|
3995
|
+
signTransaction?: undefined;
|
|
3996
|
+
signTypedData?: undefined;
|
|
3997
|
+
publicKey?: undefined;
|
|
3998
|
+
source?: undefined;
|
|
3999
|
+
} | {
|
|
4000
|
+
address: `0x${string}`;
|
|
4001
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
4002
|
+
signMessage: ({ message }: {
|
|
4003
|
+
message: import("viem").SignableMessage;
|
|
4004
|
+
}) => Promise<`0x${string}`>;
|
|
4005
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
4006
|
+
serializer?: serializer | undefined;
|
|
4007
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
4008
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
4009
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
4010
|
+
[x: `string[${string}]`]: undefined;
|
|
4011
|
+
[x: `function[${string}]`]: undefined;
|
|
4012
|
+
[x: `address[${string}]`]: undefined;
|
|
4013
|
+
[x: `bool[${string}]`]: undefined;
|
|
4014
|
+
[x: `bytes[${string}]`]: undefined;
|
|
4015
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
4016
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
4017
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
4018
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
4019
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
4020
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
4021
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
4022
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
4023
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
4024
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
4025
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
4026
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
4027
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
4028
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
4029
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
4030
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
4031
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
4032
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
4033
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
4034
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
4035
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
4036
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
4037
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
4038
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
4039
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
4040
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
4041
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
4042
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
4043
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
4044
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
4045
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
4046
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
4047
|
+
[x: `int[${string}]`]: undefined;
|
|
4048
|
+
[x: `int8[${string}]`]: undefined;
|
|
4049
|
+
[x: `int16[${string}]`]: undefined;
|
|
4050
|
+
[x: `int24[${string}]`]: undefined;
|
|
4051
|
+
[x: `int32[${string}]`]: undefined;
|
|
4052
|
+
[x: `int40[${string}]`]: undefined;
|
|
4053
|
+
[x: `int48[${string}]`]: undefined;
|
|
4054
|
+
[x: `int56[${string}]`]: undefined;
|
|
4055
|
+
[x: `int64[${string}]`]: undefined;
|
|
4056
|
+
[x: `int72[${string}]`]: undefined;
|
|
4057
|
+
[x: `int80[${string}]`]: undefined;
|
|
4058
|
+
[x: `int88[${string}]`]: undefined;
|
|
4059
|
+
[x: `int96[${string}]`]: undefined;
|
|
4060
|
+
[x: `int104[${string}]`]: undefined;
|
|
4061
|
+
[x: `int112[${string}]`]: undefined;
|
|
4062
|
+
[x: `int120[${string}]`]: undefined;
|
|
4063
|
+
[x: `int128[${string}]`]: undefined;
|
|
4064
|
+
[x: `int136[${string}]`]: undefined;
|
|
4065
|
+
[x: `int144[${string}]`]: undefined;
|
|
4066
|
+
[x: `int152[${string}]`]: undefined;
|
|
4067
|
+
[x: `int160[${string}]`]: undefined;
|
|
4068
|
+
[x: `int168[${string}]`]: undefined;
|
|
4069
|
+
[x: `int176[${string}]`]: undefined;
|
|
4070
|
+
[x: `int184[${string}]`]: undefined;
|
|
4071
|
+
[x: `int192[${string}]`]: undefined;
|
|
4072
|
+
[x: `int200[${string}]`]: undefined;
|
|
4073
|
+
[x: `int208[${string}]`]: undefined;
|
|
4074
|
+
[x: `int216[${string}]`]: undefined;
|
|
4075
|
+
[x: `int224[${string}]`]: undefined;
|
|
4076
|
+
[x: `int232[${string}]`]: undefined;
|
|
4077
|
+
[x: `int240[${string}]`]: undefined;
|
|
4078
|
+
[x: `int248[${string}]`]: undefined;
|
|
4079
|
+
[x: `int256[${string}]`]: undefined;
|
|
4080
|
+
[x: `uint[${string}]`]: undefined;
|
|
4081
|
+
[x: `uint8[${string}]`]: undefined;
|
|
4082
|
+
[x: `uint16[${string}]`]: undefined;
|
|
4083
|
+
[x: `uint24[${string}]`]: undefined;
|
|
4084
|
+
[x: `uint32[${string}]`]: undefined;
|
|
4085
|
+
[x: `uint40[${string}]`]: undefined;
|
|
4086
|
+
[x: `uint48[${string}]`]: undefined;
|
|
4087
|
+
[x: `uint56[${string}]`]: undefined;
|
|
4088
|
+
[x: `uint64[${string}]`]: undefined;
|
|
4089
|
+
[x: `uint72[${string}]`]: undefined;
|
|
4090
|
+
[x: `uint80[${string}]`]: undefined;
|
|
4091
|
+
[x: `uint88[${string}]`]: undefined;
|
|
4092
|
+
[x: `uint96[${string}]`]: undefined;
|
|
4093
|
+
[x: `uint104[${string}]`]: undefined;
|
|
4094
|
+
[x: `uint112[${string}]`]: undefined;
|
|
4095
|
+
[x: `uint120[${string}]`]: undefined;
|
|
4096
|
+
[x: `uint128[${string}]`]: undefined;
|
|
4097
|
+
[x: `uint136[${string}]`]: undefined;
|
|
4098
|
+
[x: `uint144[${string}]`]: undefined;
|
|
4099
|
+
[x: `uint152[${string}]`]: undefined;
|
|
4100
|
+
[x: `uint160[${string}]`]: undefined;
|
|
4101
|
+
[x: `uint168[${string}]`]: undefined;
|
|
4102
|
+
[x: `uint176[${string}]`]: undefined;
|
|
4103
|
+
[x: `uint184[${string}]`]: undefined;
|
|
4104
|
+
[x: `uint192[${string}]`]: undefined;
|
|
4105
|
+
[x: `uint200[${string}]`]: undefined;
|
|
4106
|
+
[x: `uint208[${string}]`]: undefined;
|
|
4107
|
+
[x: `uint216[${string}]`]: undefined;
|
|
4108
|
+
[x: `uint224[${string}]`]: undefined;
|
|
4109
|
+
[x: `uint232[${string}]`]: undefined;
|
|
4110
|
+
[x: `uint240[${string}]`]: undefined;
|
|
4111
|
+
[x: `uint248[${string}]`]: undefined;
|
|
4112
|
+
[x: `uint256[${string}]`]: undefined;
|
|
4113
|
+
string?: undefined;
|
|
4114
|
+
address?: undefined;
|
|
4115
|
+
bool?: undefined;
|
|
4116
|
+
bytes?: undefined;
|
|
4117
|
+
bytes20?: undefined;
|
|
4118
|
+
bytes1?: undefined;
|
|
4119
|
+
bytes2?: undefined;
|
|
4120
|
+
bytes3?: undefined;
|
|
4121
|
+
bytes4?: undefined;
|
|
4122
|
+
bytes5?: undefined;
|
|
4123
|
+
bytes6?: undefined;
|
|
4124
|
+
bytes7?: undefined;
|
|
4125
|
+
bytes8?: undefined;
|
|
4126
|
+
bytes9?: undefined;
|
|
4127
|
+
bytes10?: undefined;
|
|
4128
|
+
bytes11?: undefined;
|
|
4129
|
+
bytes12?: undefined;
|
|
4130
|
+
bytes13?: undefined;
|
|
4131
|
+
bytes14?: undefined;
|
|
4132
|
+
bytes15?: undefined;
|
|
4133
|
+
bytes16?: undefined;
|
|
4134
|
+
bytes17?: undefined;
|
|
4135
|
+
bytes18?: undefined;
|
|
4136
|
+
bytes19?: undefined;
|
|
4137
|
+
bytes21?: undefined;
|
|
4138
|
+
bytes22?: undefined;
|
|
4139
|
+
bytes23?: undefined;
|
|
4140
|
+
bytes24?: undefined;
|
|
4141
|
+
bytes25?: undefined;
|
|
4142
|
+
bytes26?: undefined;
|
|
4143
|
+
bytes27?: undefined;
|
|
4144
|
+
bytes28?: undefined;
|
|
4145
|
+
bytes29?: undefined;
|
|
4146
|
+
bytes30?: undefined;
|
|
4147
|
+
bytes31?: undefined;
|
|
4148
|
+
bytes32?: undefined;
|
|
4149
|
+
int8?: undefined;
|
|
4150
|
+
int16?: undefined;
|
|
4151
|
+
int24?: undefined;
|
|
4152
|
+
int32?: undefined;
|
|
4153
|
+
int40?: undefined;
|
|
4154
|
+
int48?: undefined;
|
|
4155
|
+
int56?: undefined;
|
|
4156
|
+
int64?: undefined;
|
|
4157
|
+
int72?: undefined;
|
|
4158
|
+
int80?: undefined;
|
|
4159
|
+
int88?: undefined;
|
|
4160
|
+
int96?: undefined;
|
|
4161
|
+
int104?: undefined;
|
|
4162
|
+
int112?: undefined;
|
|
4163
|
+
int120?: undefined;
|
|
4164
|
+
int128?: undefined;
|
|
4165
|
+
int136?: undefined;
|
|
4166
|
+
int144?: undefined;
|
|
4167
|
+
int152?: undefined;
|
|
4168
|
+
int160?: undefined;
|
|
4169
|
+
int168?: undefined;
|
|
4170
|
+
int176?: undefined;
|
|
4171
|
+
int184?: undefined;
|
|
4172
|
+
int192?: undefined;
|
|
4173
|
+
int200?: undefined;
|
|
4174
|
+
int208?: undefined;
|
|
4175
|
+
int216?: undefined;
|
|
4176
|
+
int224?: undefined;
|
|
4177
|
+
int232?: undefined;
|
|
4178
|
+
int240?: undefined;
|
|
4179
|
+
int248?: undefined;
|
|
4180
|
+
int256?: undefined;
|
|
4181
|
+
uint8?: undefined;
|
|
4182
|
+
uint16?: undefined;
|
|
4183
|
+
uint24?: undefined;
|
|
4184
|
+
uint32?: undefined;
|
|
4185
|
+
uint40?: undefined;
|
|
4186
|
+
uint48?: undefined;
|
|
4187
|
+
uint56?: undefined;
|
|
4188
|
+
uint64?: undefined;
|
|
4189
|
+
uint72?: undefined;
|
|
4190
|
+
uint80?: undefined;
|
|
4191
|
+
uint88?: undefined;
|
|
4192
|
+
uint96?: undefined;
|
|
4193
|
+
uint104?: undefined;
|
|
4194
|
+
uint112?: undefined;
|
|
4195
|
+
uint120?: undefined;
|
|
4196
|
+
uint128?: undefined;
|
|
4197
|
+
uint136?: undefined;
|
|
4198
|
+
uint144?: undefined;
|
|
4199
|
+
uint152?: undefined;
|
|
4200
|
+
uint160?: undefined;
|
|
4201
|
+
uint168?: undefined;
|
|
4202
|
+
uint176?: undefined;
|
|
4203
|
+
uint184?: undefined;
|
|
4204
|
+
uint192?: undefined;
|
|
4205
|
+
uint200?: undefined;
|
|
4206
|
+
uint208?: undefined;
|
|
4207
|
+
uint216?: undefined;
|
|
4208
|
+
uint224?: undefined;
|
|
4209
|
+
uint232?: undefined;
|
|
4210
|
+
uint240?: undefined;
|
|
4211
|
+
uint248?: undefined;
|
|
4212
|
+
uint256?: undefined;
|
|
4213
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
4214
|
+
publicKey: `0x${string}`;
|
|
4215
|
+
source: string;
|
|
4216
|
+
type: "local";
|
|
4217
|
+
}, TAccountOverride_1> ? T_36 extends import("viem").Account ? {
|
|
3102
4218
|
account: T_36;
|
|
3103
4219
|
from: `0x${string}`;
|
|
3104
4220
|
} : {
|
|
@@ -4482,17 +5598,465 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
4482
5598
|
sidecars: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
4483
5599
|
}, import("viem").TransactionSerializableEIP4844>)) | import("viem").Opaque<import("viem").TransactionSerializableEIP4844, TRequest_2> | import("viem").Opaque<import("viem").TransactionRequestEIP4844, TRequest_2> ? "eip4844" : never) | (TRequest_2["type"] extends string ? TRequest_2["type"] : never)>) ? T_44 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never)>> & {
|
|
4484
5600
|
chainId?: number | undefined;
|
|
4485
|
-
}, (TRequest_2["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest_2["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_45 ? T_45 extends (TRequest_2["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest_2["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_45 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_45 : never : never> & (unknown extends TRequest_2["kzg"] ? {} : Pick<TRequest_2, "kzg">) extends infer T_23 ? { [K_2 in keyof T_23]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, TChainOverride_4>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, TChainOverride_4> extends infer T_24 ? T_24 extends import("viem").DeriveChain<Chain, TChainOverride_4> ? T_24 extends Chain ? {
|
|
5601
|
+
}, (TRequest_2["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest_2["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_45 ? T_45 extends (TRequest_2["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest_2["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_45 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_45 : never : never> & (unknown extends TRequest_2["kzg"] ? {} : Pick<TRequest_2, "kzg">) extends infer T_23 ? { [K_2 in keyof T_23]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride_4>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride_4> extends infer T_24 ? T_24 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride_4> ? T_24 extends import("viem").Chain ? {
|
|
4486
5602
|
chain: T_24;
|
|
4487
5603
|
} : {
|
|
4488
5604
|
chain?: undefined;
|
|
4489
5605
|
} : never : never) & (import("viem").DeriveAccount<{
|
|
4490
5606
|
address: `0x${string}`;
|
|
4491
5607
|
type: "json-rpc";
|
|
5608
|
+
experimental_signAuthMessage?: undefined;
|
|
5609
|
+
signMessage?: undefined;
|
|
5610
|
+
signTransaction?: undefined;
|
|
5611
|
+
signTypedData?: undefined;
|
|
5612
|
+
publicKey?: undefined;
|
|
5613
|
+
source?: undefined;
|
|
5614
|
+
} | {
|
|
5615
|
+
address: `0x${string}`;
|
|
5616
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
5617
|
+
signMessage: ({ message }: {
|
|
5618
|
+
message: import("viem").SignableMessage;
|
|
5619
|
+
}) => Promise<`0x${string}`>;
|
|
5620
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
5621
|
+
serializer?: serializer | undefined;
|
|
5622
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
5623
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
5624
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
5625
|
+
[x: `string[${string}]`]: undefined;
|
|
5626
|
+
[x: `function[${string}]`]: undefined;
|
|
5627
|
+
[x: `address[${string}]`]: undefined;
|
|
5628
|
+
[x: `bool[${string}]`]: undefined;
|
|
5629
|
+
[x: `bytes[${string}]`]: undefined;
|
|
5630
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
5631
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
5632
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
5633
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
5634
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
5635
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
5636
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
5637
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
5638
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
5639
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
5640
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
5641
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
5642
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
5643
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
5644
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
5645
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
5646
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
5647
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
5648
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
5649
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
5650
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
5651
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
5652
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
5653
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
5654
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
5655
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
5656
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
5657
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
5658
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
5659
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
5660
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
5661
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
5662
|
+
[x: `int[${string}]`]: undefined;
|
|
5663
|
+
[x: `int8[${string}]`]: undefined;
|
|
5664
|
+
[x: `int16[${string}]`]: undefined;
|
|
5665
|
+
[x: `int24[${string}]`]: undefined;
|
|
5666
|
+
[x: `int32[${string}]`]: undefined;
|
|
5667
|
+
[x: `int40[${string}]`]: undefined;
|
|
5668
|
+
[x: `int48[${string}]`]: undefined;
|
|
5669
|
+
[x: `int56[${string}]`]: undefined;
|
|
5670
|
+
[x: `int64[${string}]`]: undefined;
|
|
5671
|
+
[x: `int72[${string}]`]: undefined;
|
|
5672
|
+
[x: `int80[${string}]`]: undefined;
|
|
5673
|
+
[x: `int88[${string}]`]: undefined;
|
|
5674
|
+
[x: `int96[${string}]`]: undefined;
|
|
5675
|
+
[x: `int104[${string}]`]: undefined;
|
|
5676
|
+
[x: `int112[${string}]`]: undefined;
|
|
5677
|
+
[x: `int120[${string}]`]: undefined;
|
|
5678
|
+
[x: `int128[${string}]`]: undefined;
|
|
5679
|
+
[x: `int136[${string}]`]: undefined;
|
|
5680
|
+
[x: `int144[${string}]`]: undefined;
|
|
5681
|
+
[x: `int152[${string}]`]: undefined;
|
|
5682
|
+
[x: `int160[${string}]`]: undefined;
|
|
5683
|
+
[x: `int168[${string}]`]: undefined;
|
|
5684
|
+
[x: `int176[${string}]`]: undefined;
|
|
5685
|
+
[x: `int184[${string}]`]: undefined;
|
|
5686
|
+
[x: `int192[${string}]`]: undefined;
|
|
5687
|
+
[x: `int200[${string}]`]: undefined;
|
|
5688
|
+
[x: `int208[${string}]`]: undefined;
|
|
5689
|
+
[x: `int216[${string}]`]: undefined;
|
|
5690
|
+
[x: `int224[${string}]`]: undefined;
|
|
5691
|
+
[x: `int232[${string}]`]: undefined;
|
|
5692
|
+
[x: `int240[${string}]`]: undefined;
|
|
5693
|
+
[x: `int248[${string}]`]: undefined;
|
|
5694
|
+
[x: `int256[${string}]`]: undefined;
|
|
5695
|
+
[x: `uint[${string}]`]: undefined;
|
|
5696
|
+
[x: `uint8[${string}]`]: undefined;
|
|
5697
|
+
[x: `uint16[${string}]`]: undefined;
|
|
5698
|
+
[x: `uint24[${string}]`]: undefined;
|
|
5699
|
+
[x: `uint32[${string}]`]: undefined;
|
|
5700
|
+
[x: `uint40[${string}]`]: undefined;
|
|
5701
|
+
[x: `uint48[${string}]`]: undefined;
|
|
5702
|
+
[x: `uint56[${string}]`]: undefined;
|
|
5703
|
+
[x: `uint64[${string}]`]: undefined;
|
|
5704
|
+
[x: `uint72[${string}]`]: undefined;
|
|
5705
|
+
[x: `uint80[${string}]`]: undefined;
|
|
5706
|
+
[x: `uint88[${string}]`]: undefined;
|
|
5707
|
+
[x: `uint96[${string}]`]: undefined;
|
|
5708
|
+
[x: `uint104[${string}]`]: undefined;
|
|
5709
|
+
[x: `uint112[${string}]`]: undefined;
|
|
5710
|
+
[x: `uint120[${string}]`]: undefined;
|
|
5711
|
+
[x: `uint128[${string}]`]: undefined;
|
|
5712
|
+
[x: `uint136[${string}]`]: undefined;
|
|
5713
|
+
[x: `uint144[${string}]`]: undefined;
|
|
5714
|
+
[x: `uint152[${string}]`]: undefined;
|
|
5715
|
+
[x: `uint160[${string}]`]: undefined;
|
|
5716
|
+
[x: `uint168[${string}]`]: undefined;
|
|
5717
|
+
[x: `uint176[${string}]`]: undefined;
|
|
5718
|
+
[x: `uint184[${string}]`]: undefined;
|
|
5719
|
+
[x: `uint192[${string}]`]: undefined;
|
|
5720
|
+
[x: `uint200[${string}]`]: undefined;
|
|
5721
|
+
[x: `uint208[${string}]`]: undefined;
|
|
5722
|
+
[x: `uint216[${string}]`]: undefined;
|
|
5723
|
+
[x: `uint224[${string}]`]: undefined;
|
|
5724
|
+
[x: `uint232[${string}]`]: undefined;
|
|
5725
|
+
[x: `uint240[${string}]`]: undefined;
|
|
5726
|
+
[x: `uint248[${string}]`]: undefined;
|
|
5727
|
+
[x: `uint256[${string}]`]: undefined;
|
|
5728
|
+
string?: undefined;
|
|
5729
|
+
address?: undefined;
|
|
5730
|
+
bool?: undefined;
|
|
5731
|
+
bytes?: undefined;
|
|
5732
|
+
bytes20?: undefined;
|
|
5733
|
+
bytes1?: undefined;
|
|
5734
|
+
bytes2?: undefined;
|
|
5735
|
+
bytes3?: undefined;
|
|
5736
|
+
bytes4?: undefined;
|
|
5737
|
+
bytes5?: undefined;
|
|
5738
|
+
bytes6?: undefined;
|
|
5739
|
+
bytes7?: undefined;
|
|
5740
|
+
bytes8?: undefined;
|
|
5741
|
+
bytes9?: undefined;
|
|
5742
|
+
bytes10?: undefined;
|
|
5743
|
+
bytes11?: undefined;
|
|
5744
|
+
bytes12?: undefined;
|
|
5745
|
+
bytes13?: undefined;
|
|
5746
|
+
bytes14?: undefined;
|
|
5747
|
+
bytes15?: undefined;
|
|
5748
|
+
bytes16?: undefined;
|
|
5749
|
+
bytes17?: undefined;
|
|
5750
|
+
bytes18?: undefined;
|
|
5751
|
+
bytes19?: undefined;
|
|
5752
|
+
bytes21?: undefined;
|
|
5753
|
+
bytes22?: undefined;
|
|
5754
|
+
bytes23?: undefined;
|
|
5755
|
+
bytes24?: undefined;
|
|
5756
|
+
bytes25?: undefined;
|
|
5757
|
+
bytes26?: undefined;
|
|
5758
|
+
bytes27?: undefined;
|
|
5759
|
+
bytes28?: undefined;
|
|
5760
|
+
bytes29?: undefined;
|
|
5761
|
+
bytes30?: undefined;
|
|
5762
|
+
bytes31?: undefined;
|
|
5763
|
+
bytes32?: undefined;
|
|
5764
|
+
int8?: undefined;
|
|
5765
|
+
int16?: undefined;
|
|
5766
|
+
int24?: undefined;
|
|
5767
|
+
int32?: undefined;
|
|
5768
|
+
int40?: undefined;
|
|
5769
|
+
int48?: undefined;
|
|
5770
|
+
int56?: undefined;
|
|
5771
|
+
int64?: undefined;
|
|
5772
|
+
int72?: undefined;
|
|
5773
|
+
int80?: undefined;
|
|
5774
|
+
int88?: undefined;
|
|
5775
|
+
int96?: undefined;
|
|
5776
|
+
int104?: undefined;
|
|
5777
|
+
int112?: undefined;
|
|
5778
|
+
int120?: undefined;
|
|
5779
|
+
int128?: undefined;
|
|
5780
|
+
int136?: undefined;
|
|
5781
|
+
int144?: undefined;
|
|
5782
|
+
int152?: undefined;
|
|
5783
|
+
int160?: undefined;
|
|
5784
|
+
int168?: undefined;
|
|
5785
|
+
int176?: undefined;
|
|
5786
|
+
int184?: undefined;
|
|
5787
|
+
int192?: undefined;
|
|
5788
|
+
int200?: undefined;
|
|
5789
|
+
int208?: undefined;
|
|
5790
|
+
int216?: undefined;
|
|
5791
|
+
int224?: undefined;
|
|
5792
|
+
int232?: undefined;
|
|
5793
|
+
int240?: undefined;
|
|
5794
|
+
int248?: undefined;
|
|
5795
|
+
int256?: undefined;
|
|
5796
|
+
uint8?: undefined;
|
|
5797
|
+
uint16?: undefined;
|
|
5798
|
+
uint24?: undefined;
|
|
5799
|
+
uint32?: undefined;
|
|
5800
|
+
uint40?: undefined;
|
|
5801
|
+
uint48?: undefined;
|
|
5802
|
+
uint56?: undefined;
|
|
5803
|
+
uint64?: undefined;
|
|
5804
|
+
uint72?: undefined;
|
|
5805
|
+
uint80?: undefined;
|
|
5806
|
+
uint88?: undefined;
|
|
5807
|
+
uint96?: undefined;
|
|
5808
|
+
uint104?: undefined;
|
|
5809
|
+
uint112?: undefined;
|
|
5810
|
+
uint120?: undefined;
|
|
5811
|
+
uint128?: undefined;
|
|
5812
|
+
uint136?: undefined;
|
|
5813
|
+
uint144?: undefined;
|
|
5814
|
+
uint152?: undefined;
|
|
5815
|
+
uint160?: undefined;
|
|
5816
|
+
uint168?: undefined;
|
|
5817
|
+
uint176?: undefined;
|
|
5818
|
+
uint184?: undefined;
|
|
5819
|
+
uint192?: undefined;
|
|
5820
|
+
uint200?: undefined;
|
|
5821
|
+
uint208?: undefined;
|
|
5822
|
+
uint216?: undefined;
|
|
5823
|
+
uint224?: undefined;
|
|
5824
|
+
uint232?: undefined;
|
|
5825
|
+
uint240?: undefined;
|
|
5826
|
+
uint248?: undefined;
|
|
5827
|
+
uint256?: undefined;
|
|
5828
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
5829
|
+
publicKey: `0x${string}`;
|
|
5830
|
+
source: string;
|
|
5831
|
+
type: "local";
|
|
4492
5832
|
}, TAccountOverride_1> extends infer T_25 ? T_25 extends import("viem").DeriveAccount<{
|
|
4493
5833
|
address: `0x${string}`;
|
|
4494
5834
|
type: "json-rpc";
|
|
4495
|
-
|
|
5835
|
+
experimental_signAuthMessage?: undefined;
|
|
5836
|
+
signMessage?: undefined;
|
|
5837
|
+
signTransaction?: undefined;
|
|
5838
|
+
signTypedData?: undefined;
|
|
5839
|
+
publicKey?: undefined;
|
|
5840
|
+
source?: undefined;
|
|
5841
|
+
} | {
|
|
5842
|
+
address: `0x${string}`;
|
|
5843
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
5844
|
+
signMessage: ({ message }: {
|
|
5845
|
+
message: import("viem").SignableMessage;
|
|
5846
|
+
}) => Promise<`0x${string}`>;
|
|
5847
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
5848
|
+
serializer?: serializer | undefined;
|
|
5849
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
5850
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
5851
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
5852
|
+
[x: `string[${string}]`]: undefined;
|
|
5853
|
+
[x: `function[${string}]`]: undefined;
|
|
5854
|
+
[x: `address[${string}]`]: undefined;
|
|
5855
|
+
[x: `bool[${string}]`]: undefined;
|
|
5856
|
+
[x: `bytes[${string}]`]: undefined;
|
|
5857
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
5858
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
5859
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
5860
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
5861
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
5862
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
5863
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
5864
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
5865
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
5866
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
5867
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
5868
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
5869
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
5870
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
5871
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
5872
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
5873
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
5874
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
5875
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
5876
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
5877
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
5878
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
5879
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
5880
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
5881
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
5882
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
5883
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
5884
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
5885
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
5886
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
5887
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
5888
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
5889
|
+
[x: `int[${string}]`]: undefined;
|
|
5890
|
+
[x: `int8[${string}]`]: undefined;
|
|
5891
|
+
[x: `int16[${string}]`]: undefined;
|
|
5892
|
+
[x: `int24[${string}]`]: undefined;
|
|
5893
|
+
[x: `int32[${string}]`]: undefined;
|
|
5894
|
+
[x: `int40[${string}]`]: undefined;
|
|
5895
|
+
[x: `int48[${string}]`]: undefined;
|
|
5896
|
+
[x: `int56[${string}]`]: undefined;
|
|
5897
|
+
[x: `int64[${string}]`]: undefined;
|
|
5898
|
+
[x: `int72[${string}]`]: undefined;
|
|
5899
|
+
[x: `int80[${string}]`]: undefined;
|
|
5900
|
+
[x: `int88[${string}]`]: undefined;
|
|
5901
|
+
[x: `int96[${string}]`]: undefined;
|
|
5902
|
+
[x: `int104[${string}]`]: undefined;
|
|
5903
|
+
[x: `int112[${string}]`]: undefined;
|
|
5904
|
+
[x: `int120[${string}]`]: undefined;
|
|
5905
|
+
[x: `int128[${string}]`]: undefined;
|
|
5906
|
+
[x: `int136[${string}]`]: undefined;
|
|
5907
|
+
[x: `int144[${string}]`]: undefined;
|
|
5908
|
+
[x: `int152[${string}]`]: undefined;
|
|
5909
|
+
[x: `int160[${string}]`]: undefined;
|
|
5910
|
+
[x: `int168[${string}]`]: undefined;
|
|
5911
|
+
[x: `int176[${string}]`]: undefined;
|
|
5912
|
+
[x: `int184[${string}]`]: undefined;
|
|
5913
|
+
[x: `int192[${string}]`]: undefined;
|
|
5914
|
+
[x: `int200[${string}]`]: undefined;
|
|
5915
|
+
[x: `int208[${string}]`]: undefined;
|
|
5916
|
+
[x: `int216[${string}]`]: undefined;
|
|
5917
|
+
[x: `int224[${string}]`]: undefined;
|
|
5918
|
+
[x: `int232[${string}]`]: undefined;
|
|
5919
|
+
[x: `int240[${string}]`]: undefined;
|
|
5920
|
+
[x: `int248[${string}]`]: undefined;
|
|
5921
|
+
[x: `int256[${string}]`]: undefined;
|
|
5922
|
+
[x: `uint[${string}]`]: undefined;
|
|
5923
|
+
[x: `uint8[${string}]`]: undefined;
|
|
5924
|
+
[x: `uint16[${string}]`]: undefined;
|
|
5925
|
+
[x: `uint24[${string}]`]: undefined;
|
|
5926
|
+
[x: `uint32[${string}]`]: undefined;
|
|
5927
|
+
[x: `uint40[${string}]`]: undefined;
|
|
5928
|
+
[x: `uint48[${string}]`]: undefined;
|
|
5929
|
+
[x: `uint56[${string}]`]: undefined;
|
|
5930
|
+
[x: `uint64[${string}]`]: undefined;
|
|
5931
|
+
[x: `uint72[${string}]`]: undefined;
|
|
5932
|
+
[x: `uint80[${string}]`]: undefined;
|
|
5933
|
+
[x: `uint88[${string}]`]: undefined;
|
|
5934
|
+
[x: `uint96[${string}]`]: undefined;
|
|
5935
|
+
[x: `uint104[${string}]`]: undefined;
|
|
5936
|
+
[x: `uint112[${string}]`]: undefined;
|
|
5937
|
+
[x: `uint120[${string}]`]: undefined;
|
|
5938
|
+
[x: `uint128[${string}]`]: undefined;
|
|
5939
|
+
[x: `uint136[${string}]`]: undefined;
|
|
5940
|
+
[x: `uint144[${string}]`]: undefined;
|
|
5941
|
+
[x: `uint152[${string}]`]: undefined;
|
|
5942
|
+
[x: `uint160[${string}]`]: undefined;
|
|
5943
|
+
[x: `uint168[${string}]`]: undefined;
|
|
5944
|
+
[x: `uint176[${string}]`]: undefined;
|
|
5945
|
+
[x: `uint184[${string}]`]: undefined;
|
|
5946
|
+
[x: `uint192[${string}]`]: undefined;
|
|
5947
|
+
[x: `uint200[${string}]`]: undefined;
|
|
5948
|
+
[x: `uint208[${string}]`]: undefined;
|
|
5949
|
+
[x: `uint216[${string}]`]: undefined;
|
|
5950
|
+
[x: `uint224[${string}]`]: undefined;
|
|
5951
|
+
[x: `uint232[${string}]`]: undefined;
|
|
5952
|
+
[x: `uint240[${string}]`]: undefined;
|
|
5953
|
+
[x: `uint248[${string}]`]: undefined;
|
|
5954
|
+
[x: `uint256[${string}]`]: undefined;
|
|
5955
|
+
string?: undefined;
|
|
5956
|
+
address?: undefined;
|
|
5957
|
+
bool?: undefined;
|
|
5958
|
+
bytes?: undefined;
|
|
5959
|
+
bytes20?: undefined;
|
|
5960
|
+
bytes1?: undefined;
|
|
5961
|
+
bytes2?: undefined;
|
|
5962
|
+
bytes3?: undefined;
|
|
5963
|
+
bytes4?: undefined;
|
|
5964
|
+
bytes5?: undefined;
|
|
5965
|
+
bytes6?: undefined;
|
|
5966
|
+
bytes7?: undefined;
|
|
5967
|
+
bytes8?: undefined;
|
|
5968
|
+
bytes9?: undefined;
|
|
5969
|
+
bytes10?: undefined;
|
|
5970
|
+
bytes11?: undefined;
|
|
5971
|
+
bytes12?: undefined;
|
|
5972
|
+
bytes13?: undefined;
|
|
5973
|
+
bytes14?: undefined;
|
|
5974
|
+
bytes15?: undefined;
|
|
5975
|
+
bytes16?: undefined;
|
|
5976
|
+
bytes17?: undefined;
|
|
5977
|
+
bytes18?: undefined;
|
|
5978
|
+
bytes19?: undefined;
|
|
5979
|
+
bytes21?: undefined;
|
|
5980
|
+
bytes22?: undefined;
|
|
5981
|
+
bytes23?: undefined;
|
|
5982
|
+
bytes24?: undefined;
|
|
5983
|
+
bytes25?: undefined;
|
|
5984
|
+
bytes26?: undefined;
|
|
5985
|
+
bytes27?: undefined;
|
|
5986
|
+
bytes28?: undefined;
|
|
5987
|
+
bytes29?: undefined;
|
|
5988
|
+
bytes30?: undefined;
|
|
5989
|
+
bytes31?: undefined;
|
|
5990
|
+
bytes32?: undefined;
|
|
5991
|
+
int8?: undefined;
|
|
5992
|
+
int16?: undefined;
|
|
5993
|
+
int24?: undefined;
|
|
5994
|
+
int32?: undefined;
|
|
5995
|
+
int40?: undefined;
|
|
5996
|
+
int48?: undefined;
|
|
5997
|
+
int56?: undefined;
|
|
5998
|
+
int64?: undefined;
|
|
5999
|
+
int72?: undefined;
|
|
6000
|
+
int80?: undefined;
|
|
6001
|
+
int88?: undefined;
|
|
6002
|
+
int96?: undefined;
|
|
6003
|
+
int104?: undefined;
|
|
6004
|
+
int112?: undefined;
|
|
6005
|
+
int120?: undefined;
|
|
6006
|
+
int128?: undefined;
|
|
6007
|
+
int136?: undefined;
|
|
6008
|
+
int144?: undefined;
|
|
6009
|
+
int152?: undefined;
|
|
6010
|
+
int160?: undefined;
|
|
6011
|
+
int168?: undefined;
|
|
6012
|
+
int176?: undefined;
|
|
6013
|
+
int184?: undefined;
|
|
6014
|
+
int192?: undefined;
|
|
6015
|
+
int200?: undefined;
|
|
6016
|
+
int208?: undefined;
|
|
6017
|
+
int216?: undefined;
|
|
6018
|
+
int224?: undefined;
|
|
6019
|
+
int232?: undefined;
|
|
6020
|
+
int240?: undefined;
|
|
6021
|
+
int248?: undefined;
|
|
6022
|
+
int256?: undefined;
|
|
6023
|
+
uint8?: undefined;
|
|
6024
|
+
uint16?: undefined;
|
|
6025
|
+
uint24?: undefined;
|
|
6026
|
+
uint32?: undefined;
|
|
6027
|
+
uint40?: undefined;
|
|
6028
|
+
uint48?: undefined;
|
|
6029
|
+
uint56?: undefined;
|
|
6030
|
+
uint64?: undefined;
|
|
6031
|
+
uint72?: undefined;
|
|
6032
|
+
uint80?: undefined;
|
|
6033
|
+
uint88?: undefined;
|
|
6034
|
+
uint96?: undefined;
|
|
6035
|
+
uint104?: undefined;
|
|
6036
|
+
uint112?: undefined;
|
|
6037
|
+
uint120?: undefined;
|
|
6038
|
+
uint128?: undefined;
|
|
6039
|
+
uint136?: undefined;
|
|
6040
|
+
uint144?: undefined;
|
|
6041
|
+
uint152?: undefined;
|
|
6042
|
+
uint160?: undefined;
|
|
6043
|
+
uint168?: undefined;
|
|
6044
|
+
uint176?: undefined;
|
|
6045
|
+
uint184?: undefined;
|
|
6046
|
+
uint192?: undefined;
|
|
6047
|
+
uint200?: undefined;
|
|
6048
|
+
uint208?: undefined;
|
|
6049
|
+
uint216?: undefined;
|
|
6050
|
+
uint224?: undefined;
|
|
6051
|
+
uint232?: undefined;
|
|
6052
|
+
uint240?: undefined;
|
|
6053
|
+
uint248?: undefined;
|
|
6054
|
+
uint256?: undefined;
|
|
6055
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
6056
|
+
publicKey: `0x${string}`;
|
|
6057
|
+
source: string;
|
|
6058
|
+
type: "local";
|
|
6059
|
+
}, TAccountOverride_1> ? T_25 extends import("viem").Account ? {
|
|
4496
6060
|
account: T_25;
|
|
4497
6061
|
from: `0x${string}`;
|
|
4498
6062
|
} : {
|
|
@@ -5883,21 +7447,691 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
5883
7447
|
eth_accounts: Record<string, any>;
|
|
5884
7448
|
}) => Promise<import("viem").RequestPermissionsReturnType>;
|
|
5885
7449
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
5886
|
-
sendTransaction: <const TRequest_3 extends import("viem").SendTransactionRequest<Chain, TChainOverride_5>, TChainOverride_5 extends Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<Chain, {
|
|
7450
|
+
sendTransaction: <const TRequest_3 extends import("viem").SendTransactionRequest<import("viem").Chain, TChainOverride_5>, TChainOverride_5 extends import("viem").Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<import("viem").Chain, {
|
|
5887
7451
|
address: `0x${string}`;
|
|
5888
7452
|
type: "json-rpc";
|
|
7453
|
+
experimental_signAuthMessage?: undefined;
|
|
7454
|
+
signMessage?: undefined;
|
|
7455
|
+
signTransaction?: undefined;
|
|
7456
|
+
signTypedData?: undefined;
|
|
7457
|
+
publicKey?: undefined;
|
|
7458
|
+
source?: undefined;
|
|
7459
|
+
} | {
|
|
7460
|
+
address: `0x${string}`;
|
|
7461
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
7462
|
+
signMessage: ({ message }: {
|
|
7463
|
+
message: import("viem").SignableMessage;
|
|
7464
|
+
}) => Promise<`0x${string}`>;
|
|
7465
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
7466
|
+
serializer?: serializer | undefined;
|
|
7467
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
7468
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
7469
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
7470
|
+
[x: `string[${string}]`]: undefined;
|
|
7471
|
+
[x: `function[${string}]`]: undefined;
|
|
7472
|
+
[x: `address[${string}]`]: undefined;
|
|
7473
|
+
[x: `bool[${string}]`]: undefined;
|
|
7474
|
+
[x: `bytes[${string}]`]: undefined;
|
|
7475
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
7476
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
7477
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
7478
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
7479
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
7480
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
7481
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
7482
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
7483
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
7484
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
7485
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
7486
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
7487
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
7488
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
7489
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
7490
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
7491
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
7492
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
7493
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
7494
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
7495
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
7496
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
7497
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
7498
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
7499
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
7500
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
7501
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
7502
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
7503
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
7504
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
7505
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
7506
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
7507
|
+
[x: `int[${string}]`]: undefined;
|
|
7508
|
+
[x: `int8[${string}]`]: undefined;
|
|
7509
|
+
[x: `int16[${string}]`]: undefined;
|
|
7510
|
+
[x: `int24[${string}]`]: undefined;
|
|
7511
|
+
[x: `int32[${string}]`]: undefined;
|
|
7512
|
+
[x: `int40[${string}]`]: undefined;
|
|
7513
|
+
[x: `int48[${string}]`]: undefined;
|
|
7514
|
+
[x: `int56[${string}]`]: undefined;
|
|
7515
|
+
[x: `int64[${string}]`]: undefined;
|
|
7516
|
+
[x: `int72[${string}]`]: undefined;
|
|
7517
|
+
[x: `int80[${string}]`]: undefined;
|
|
7518
|
+
[x: `int88[${string}]`]: undefined;
|
|
7519
|
+
[x: `int96[${string}]`]: undefined;
|
|
7520
|
+
[x: `int104[${string}]`]: undefined;
|
|
7521
|
+
[x: `int112[${string}]`]: undefined;
|
|
7522
|
+
[x: `int120[${string}]`]: undefined;
|
|
7523
|
+
[x: `int128[${string}]`]: undefined;
|
|
7524
|
+
[x: `int136[${string}]`]: undefined;
|
|
7525
|
+
[x: `int144[${string}]`]: undefined;
|
|
7526
|
+
[x: `int152[${string}]`]: undefined;
|
|
7527
|
+
[x: `int160[${string}]`]: undefined;
|
|
7528
|
+
[x: `int168[${string}]`]: undefined;
|
|
7529
|
+
[x: `int176[${string}]`]: undefined;
|
|
7530
|
+
[x: `int184[${string}]`]: undefined;
|
|
7531
|
+
[x: `int192[${string}]`]: undefined;
|
|
7532
|
+
[x: `int200[${string}]`]: undefined;
|
|
7533
|
+
[x: `int208[${string}]`]: undefined;
|
|
7534
|
+
[x: `int216[${string}]`]: undefined;
|
|
7535
|
+
[x: `int224[${string}]`]: undefined;
|
|
7536
|
+
[x: `int232[${string}]`]: undefined;
|
|
7537
|
+
[x: `int240[${string}]`]: undefined;
|
|
7538
|
+
[x: `int248[${string}]`]: undefined;
|
|
7539
|
+
[x: `int256[${string}]`]: undefined;
|
|
7540
|
+
[x: `uint[${string}]`]: undefined;
|
|
7541
|
+
[x: `uint8[${string}]`]: undefined;
|
|
7542
|
+
[x: `uint16[${string}]`]: undefined;
|
|
7543
|
+
[x: `uint24[${string}]`]: undefined;
|
|
7544
|
+
[x: `uint32[${string}]`]: undefined;
|
|
7545
|
+
[x: `uint40[${string}]`]: undefined;
|
|
7546
|
+
[x: `uint48[${string}]`]: undefined;
|
|
7547
|
+
[x: `uint56[${string}]`]: undefined;
|
|
7548
|
+
[x: `uint64[${string}]`]: undefined;
|
|
7549
|
+
[x: `uint72[${string}]`]: undefined;
|
|
7550
|
+
[x: `uint80[${string}]`]: undefined;
|
|
7551
|
+
[x: `uint88[${string}]`]: undefined;
|
|
7552
|
+
[x: `uint96[${string}]`]: undefined;
|
|
7553
|
+
[x: `uint104[${string}]`]: undefined;
|
|
7554
|
+
[x: `uint112[${string}]`]: undefined;
|
|
7555
|
+
[x: `uint120[${string}]`]: undefined;
|
|
7556
|
+
[x: `uint128[${string}]`]: undefined;
|
|
7557
|
+
[x: `uint136[${string}]`]: undefined;
|
|
7558
|
+
[x: `uint144[${string}]`]: undefined;
|
|
7559
|
+
[x: `uint152[${string}]`]: undefined;
|
|
7560
|
+
[x: `uint160[${string}]`]: undefined;
|
|
7561
|
+
[x: `uint168[${string}]`]: undefined;
|
|
7562
|
+
[x: `uint176[${string}]`]: undefined;
|
|
7563
|
+
[x: `uint184[${string}]`]: undefined;
|
|
7564
|
+
[x: `uint192[${string}]`]: undefined;
|
|
7565
|
+
[x: `uint200[${string}]`]: undefined;
|
|
7566
|
+
[x: `uint208[${string}]`]: undefined;
|
|
7567
|
+
[x: `uint216[${string}]`]: undefined;
|
|
7568
|
+
[x: `uint224[${string}]`]: undefined;
|
|
7569
|
+
[x: `uint232[${string}]`]: undefined;
|
|
7570
|
+
[x: `uint240[${string}]`]: undefined;
|
|
7571
|
+
[x: `uint248[${string}]`]: undefined;
|
|
7572
|
+
[x: `uint256[${string}]`]: undefined;
|
|
7573
|
+
string?: undefined;
|
|
7574
|
+
address?: undefined;
|
|
7575
|
+
bool?: undefined;
|
|
7576
|
+
bytes?: undefined;
|
|
7577
|
+
bytes20?: undefined;
|
|
7578
|
+
bytes1?: undefined;
|
|
7579
|
+
bytes2?: undefined;
|
|
7580
|
+
bytes3?: undefined;
|
|
7581
|
+
bytes4?: undefined;
|
|
7582
|
+
bytes5?: undefined;
|
|
7583
|
+
bytes6?: undefined;
|
|
7584
|
+
bytes7?: undefined;
|
|
7585
|
+
bytes8?: undefined;
|
|
7586
|
+
bytes9?: undefined;
|
|
7587
|
+
bytes10?: undefined;
|
|
7588
|
+
bytes11?: undefined;
|
|
7589
|
+
bytes12?: undefined;
|
|
7590
|
+
bytes13?: undefined;
|
|
7591
|
+
bytes14?: undefined;
|
|
7592
|
+
bytes15?: undefined;
|
|
7593
|
+
bytes16?: undefined;
|
|
7594
|
+
bytes17?: undefined;
|
|
7595
|
+
bytes18?: undefined;
|
|
7596
|
+
bytes19?: undefined;
|
|
7597
|
+
bytes21?: undefined;
|
|
7598
|
+
bytes22?: undefined;
|
|
7599
|
+
bytes23?: undefined;
|
|
7600
|
+
bytes24?: undefined;
|
|
7601
|
+
bytes25?: undefined;
|
|
7602
|
+
bytes26?: undefined;
|
|
7603
|
+
bytes27?: undefined;
|
|
7604
|
+
bytes28?: undefined;
|
|
7605
|
+
bytes29?: undefined;
|
|
7606
|
+
bytes30?: undefined;
|
|
7607
|
+
bytes31?: undefined;
|
|
7608
|
+
bytes32?: undefined;
|
|
7609
|
+
int8?: undefined;
|
|
7610
|
+
int16?: undefined;
|
|
7611
|
+
int24?: undefined;
|
|
7612
|
+
int32?: undefined;
|
|
7613
|
+
int40?: undefined;
|
|
7614
|
+
int48?: undefined;
|
|
7615
|
+
int56?: undefined;
|
|
7616
|
+
int64?: undefined;
|
|
7617
|
+
int72?: undefined;
|
|
7618
|
+
int80?: undefined;
|
|
7619
|
+
int88?: undefined;
|
|
7620
|
+
int96?: undefined;
|
|
7621
|
+
int104?: undefined;
|
|
7622
|
+
int112?: undefined;
|
|
7623
|
+
int120?: undefined;
|
|
7624
|
+
int128?: undefined;
|
|
7625
|
+
int136?: undefined;
|
|
7626
|
+
int144?: undefined;
|
|
7627
|
+
int152?: undefined;
|
|
7628
|
+
int160?: undefined;
|
|
7629
|
+
int168?: undefined;
|
|
7630
|
+
int176?: undefined;
|
|
7631
|
+
int184?: undefined;
|
|
7632
|
+
int192?: undefined;
|
|
7633
|
+
int200?: undefined;
|
|
7634
|
+
int208?: undefined;
|
|
7635
|
+
int216?: undefined;
|
|
7636
|
+
int224?: undefined;
|
|
7637
|
+
int232?: undefined;
|
|
7638
|
+
int240?: undefined;
|
|
7639
|
+
int248?: undefined;
|
|
7640
|
+
int256?: undefined;
|
|
7641
|
+
uint8?: undefined;
|
|
7642
|
+
uint16?: undefined;
|
|
7643
|
+
uint24?: undefined;
|
|
7644
|
+
uint32?: undefined;
|
|
7645
|
+
uint40?: undefined;
|
|
7646
|
+
uint48?: undefined;
|
|
7647
|
+
uint56?: undefined;
|
|
7648
|
+
uint64?: undefined;
|
|
7649
|
+
uint72?: undefined;
|
|
7650
|
+
uint80?: undefined;
|
|
7651
|
+
uint88?: undefined;
|
|
7652
|
+
uint96?: undefined;
|
|
7653
|
+
uint104?: undefined;
|
|
7654
|
+
uint112?: undefined;
|
|
7655
|
+
uint120?: undefined;
|
|
7656
|
+
uint128?: undefined;
|
|
7657
|
+
uint136?: undefined;
|
|
7658
|
+
uint144?: undefined;
|
|
7659
|
+
uint152?: undefined;
|
|
7660
|
+
uint160?: undefined;
|
|
7661
|
+
uint168?: undefined;
|
|
7662
|
+
uint176?: undefined;
|
|
7663
|
+
uint184?: undefined;
|
|
7664
|
+
uint192?: undefined;
|
|
7665
|
+
uint200?: undefined;
|
|
7666
|
+
uint208?: undefined;
|
|
7667
|
+
uint216?: undefined;
|
|
7668
|
+
uint224?: undefined;
|
|
7669
|
+
uint232?: undefined;
|
|
7670
|
+
uint240?: undefined;
|
|
7671
|
+
uint248?: undefined;
|
|
7672
|
+
uint256?: undefined;
|
|
7673
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
7674
|
+
publicKey: `0x${string}`;
|
|
7675
|
+
source: string;
|
|
7676
|
+
type: "local";
|
|
5889
7677
|
}, TChainOverride_5, TRequest_3>) => Promise<`0x${string}`>;
|
|
5890
7678
|
signMessage: (args: import("viem").SignMessageParameters<{
|
|
5891
7679
|
address: `0x${string}`;
|
|
5892
7680
|
type: "json-rpc";
|
|
7681
|
+
experimental_signAuthMessage?: undefined;
|
|
7682
|
+
signMessage?: undefined;
|
|
7683
|
+
signTransaction?: undefined;
|
|
7684
|
+
signTypedData?: undefined;
|
|
7685
|
+
publicKey?: undefined;
|
|
7686
|
+
source?: undefined;
|
|
7687
|
+
} | {
|
|
7688
|
+
address: `0x${string}`;
|
|
7689
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
7690
|
+
signMessage: ({ message }: {
|
|
7691
|
+
message: import("viem").SignableMessage;
|
|
7692
|
+
}) => Promise<`0x${string}`>;
|
|
7693
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
7694
|
+
serializer?: serializer | undefined;
|
|
7695
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
7696
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
7697
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
7698
|
+
[x: `string[${string}]`]: undefined;
|
|
7699
|
+
[x: `function[${string}]`]: undefined;
|
|
7700
|
+
[x: `address[${string}]`]: undefined;
|
|
7701
|
+
[x: `bool[${string}]`]: undefined;
|
|
7702
|
+
[x: `bytes[${string}]`]: undefined;
|
|
7703
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
7704
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
7705
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
7706
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
7707
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
7708
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
7709
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
7710
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
7711
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
7712
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
7713
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
7714
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
7715
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
7716
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
7717
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
7718
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
7719
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
7720
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
7721
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
7722
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
7723
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
7724
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
7725
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
7726
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
7727
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
7728
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
7729
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
7730
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
7731
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
7732
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
7733
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
7734
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
7735
|
+
[x: `int[${string}]`]: undefined;
|
|
7736
|
+
[x: `int8[${string}]`]: undefined;
|
|
7737
|
+
[x: `int16[${string}]`]: undefined;
|
|
7738
|
+
[x: `int24[${string}]`]: undefined;
|
|
7739
|
+
[x: `int32[${string}]`]: undefined;
|
|
7740
|
+
[x: `int40[${string}]`]: undefined;
|
|
7741
|
+
[x: `int48[${string}]`]: undefined;
|
|
7742
|
+
[x: `int56[${string}]`]: undefined;
|
|
7743
|
+
[x: `int64[${string}]`]: undefined;
|
|
7744
|
+
[x: `int72[${string}]`]: undefined;
|
|
7745
|
+
[x: `int80[${string}]`]: undefined;
|
|
7746
|
+
[x: `int88[${string}]`]: undefined;
|
|
7747
|
+
[x: `int96[${string}]`]: undefined;
|
|
7748
|
+
[x: `int104[${string}]`]: undefined;
|
|
7749
|
+
[x: `int112[${string}]`]: undefined;
|
|
7750
|
+
[x: `int120[${string}]`]: undefined;
|
|
7751
|
+
[x: `int128[${string}]`]: undefined;
|
|
7752
|
+
[x: `int136[${string}]`]: undefined;
|
|
7753
|
+
[x: `int144[${string}]`]: undefined;
|
|
7754
|
+
[x: `int152[${string}]`]: undefined;
|
|
7755
|
+
[x: `int160[${string}]`]: undefined;
|
|
7756
|
+
[x: `int168[${string}]`]: undefined;
|
|
7757
|
+
[x: `int176[${string}]`]: undefined;
|
|
7758
|
+
[x: `int184[${string}]`]: undefined;
|
|
7759
|
+
[x: `int192[${string}]`]: undefined;
|
|
7760
|
+
[x: `int200[${string}]`]: undefined;
|
|
7761
|
+
[x: `int208[${string}]`]: undefined;
|
|
7762
|
+
[x: `int216[${string}]`]: undefined;
|
|
7763
|
+
[x: `int224[${string}]`]: undefined;
|
|
7764
|
+
[x: `int232[${string}]`]: undefined;
|
|
7765
|
+
[x: `int240[${string}]`]: undefined;
|
|
7766
|
+
[x: `int248[${string}]`]: undefined;
|
|
7767
|
+
[x: `int256[${string}]`]: undefined;
|
|
7768
|
+
[x: `uint[${string}]`]: undefined;
|
|
7769
|
+
[x: `uint8[${string}]`]: undefined;
|
|
7770
|
+
[x: `uint16[${string}]`]: undefined;
|
|
7771
|
+
[x: `uint24[${string}]`]: undefined;
|
|
7772
|
+
[x: `uint32[${string}]`]: undefined;
|
|
7773
|
+
[x: `uint40[${string}]`]: undefined;
|
|
7774
|
+
[x: `uint48[${string}]`]: undefined;
|
|
7775
|
+
[x: `uint56[${string}]`]: undefined;
|
|
7776
|
+
[x: `uint64[${string}]`]: undefined;
|
|
7777
|
+
[x: `uint72[${string}]`]: undefined;
|
|
7778
|
+
[x: `uint80[${string}]`]: undefined;
|
|
7779
|
+
[x: `uint88[${string}]`]: undefined;
|
|
7780
|
+
[x: `uint96[${string}]`]: undefined;
|
|
7781
|
+
[x: `uint104[${string}]`]: undefined;
|
|
7782
|
+
[x: `uint112[${string}]`]: undefined;
|
|
7783
|
+
[x: `uint120[${string}]`]: undefined;
|
|
7784
|
+
[x: `uint128[${string}]`]: undefined;
|
|
7785
|
+
[x: `uint136[${string}]`]: undefined;
|
|
7786
|
+
[x: `uint144[${string}]`]: undefined;
|
|
7787
|
+
[x: `uint152[${string}]`]: undefined;
|
|
7788
|
+
[x: `uint160[${string}]`]: undefined;
|
|
7789
|
+
[x: `uint168[${string}]`]: undefined;
|
|
7790
|
+
[x: `uint176[${string}]`]: undefined;
|
|
7791
|
+
[x: `uint184[${string}]`]: undefined;
|
|
7792
|
+
[x: `uint192[${string}]`]: undefined;
|
|
7793
|
+
[x: `uint200[${string}]`]: undefined;
|
|
7794
|
+
[x: `uint208[${string}]`]: undefined;
|
|
7795
|
+
[x: `uint216[${string}]`]: undefined;
|
|
7796
|
+
[x: `uint224[${string}]`]: undefined;
|
|
7797
|
+
[x: `uint232[${string}]`]: undefined;
|
|
7798
|
+
[x: `uint240[${string}]`]: undefined;
|
|
7799
|
+
[x: `uint248[${string}]`]: undefined;
|
|
7800
|
+
[x: `uint256[${string}]`]: undefined;
|
|
7801
|
+
string?: undefined;
|
|
7802
|
+
address?: undefined;
|
|
7803
|
+
bool?: undefined;
|
|
7804
|
+
bytes?: undefined;
|
|
7805
|
+
bytes20?: undefined;
|
|
7806
|
+
bytes1?: undefined;
|
|
7807
|
+
bytes2?: undefined;
|
|
7808
|
+
bytes3?: undefined;
|
|
7809
|
+
bytes4?: undefined;
|
|
7810
|
+
bytes5?: undefined;
|
|
7811
|
+
bytes6?: undefined;
|
|
7812
|
+
bytes7?: undefined;
|
|
7813
|
+
bytes8?: undefined;
|
|
7814
|
+
bytes9?: undefined;
|
|
7815
|
+
bytes10?: undefined;
|
|
7816
|
+
bytes11?: undefined;
|
|
7817
|
+
bytes12?: undefined;
|
|
7818
|
+
bytes13?: undefined;
|
|
7819
|
+
bytes14?: undefined;
|
|
7820
|
+
bytes15?: undefined;
|
|
7821
|
+
bytes16?: undefined;
|
|
7822
|
+
bytes17?: undefined;
|
|
7823
|
+
bytes18?: undefined;
|
|
7824
|
+
bytes19?: undefined;
|
|
7825
|
+
bytes21?: undefined;
|
|
7826
|
+
bytes22?: undefined;
|
|
7827
|
+
bytes23?: undefined;
|
|
7828
|
+
bytes24?: undefined;
|
|
7829
|
+
bytes25?: undefined;
|
|
7830
|
+
bytes26?: undefined;
|
|
7831
|
+
bytes27?: undefined;
|
|
7832
|
+
bytes28?: undefined;
|
|
7833
|
+
bytes29?: undefined;
|
|
7834
|
+
bytes30?: undefined;
|
|
7835
|
+
bytes31?: undefined;
|
|
7836
|
+
bytes32?: undefined;
|
|
7837
|
+
int8?: undefined;
|
|
7838
|
+
int16?: undefined;
|
|
7839
|
+
int24?: undefined;
|
|
7840
|
+
int32?: undefined;
|
|
7841
|
+
int40?: undefined;
|
|
7842
|
+
int48?: undefined;
|
|
7843
|
+
int56?: undefined;
|
|
7844
|
+
int64?: undefined;
|
|
7845
|
+
int72?: undefined;
|
|
7846
|
+
int80?: undefined;
|
|
7847
|
+
int88?: undefined;
|
|
7848
|
+
int96?: undefined;
|
|
7849
|
+
int104?: undefined;
|
|
7850
|
+
int112?: undefined;
|
|
7851
|
+
int120?: undefined;
|
|
7852
|
+
int128?: undefined;
|
|
7853
|
+
int136?: undefined;
|
|
7854
|
+
int144?: undefined;
|
|
7855
|
+
int152?: undefined;
|
|
7856
|
+
int160?: undefined;
|
|
7857
|
+
int168?: undefined;
|
|
7858
|
+
int176?: undefined;
|
|
7859
|
+
int184?: undefined;
|
|
7860
|
+
int192?: undefined;
|
|
7861
|
+
int200?: undefined;
|
|
7862
|
+
int208?: undefined;
|
|
7863
|
+
int216?: undefined;
|
|
7864
|
+
int224?: undefined;
|
|
7865
|
+
int232?: undefined;
|
|
7866
|
+
int240?: undefined;
|
|
7867
|
+
int248?: undefined;
|
|
7868
|
+
int256?: undefined;
|
|
7869
|
+
uint8?: undefined;
|
|
7870
|
+
uint16?: undefined;
|
|
7871
|
+
uint24?: undefined;
|
|
7872
|
+
uint32?: undefined;
|
|
7873
|
+
uint40?: undefined;
|
|
7874
|
+
uint48?: undefined;
|
|
7875
|
+
uint56?: undefined;
|
|
7876
|
+
uint64?: undefined;
|
|
7877
|
+
uint72?: undefined;
|
|
7878
|
+
uint80?: undefined;
|
|
7879
|
+
uint88?: undefined;
|
|
7880
|
+
uint96?: undefined;
|
|
7881
|
+
uint104?: undefined;
|
|
7882
|
+
uint112?: undefined;
|
|
7883
|
+
uint120?: undefined;
|
|
7884
|
+
uint128?: undefined;
|
|
7885
|
+
uint136?: undefined;
|
|
7886
|
+
uint144?: undefined;
|
|
7887
|
+
uint152?: undefined;
|
|
7888
|
+
uint160?: undefined;
|
|
7889
|
+
uint168?: undefined;
|
|
7890
|
+
uint176?: undefined;
|
|
7891
|
+
uint184?: undefined;
|
|
7892
|
+
uint192?: undefined;
|
|
7893
|
+
uint200?: undefined;
|
|
7894
|
+
uint208?: undefined;
|
|
7895
|
+
uint216?: undefined;
|
|
7896
|
+
uint224?: undefined;
|
|
7897
|
+
uint232?: undefined;
|
|
7898
|
+
uint240?: undefined;
|
|
7899
|
+
uint248?: undefined;
|
|
7900
|
+
uint256?: undefined;
|
|
7901
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
7902
|
+
publicKey: `0x${string}`;
|
|
7903
|
+
source: string;
|
|
7904
|
+
type: "local";
|
|
5893
7905
|
}>) => Promise<`0x${string}`>;
|
|
5894
|
-
signTransaction: <TChainOverride_6 extends Chain | undefined>(args: import("viem").SignTransactionParameters<Chain, {
|
|
7906
|
+
signTransaction: <TChainOverride_6 extends import("viem").Chain | undefined>(args: import("viem").SignTransactionParameters<import("viem").Chain, {
|
|
5895
7907
|
address: `0x${string}`;
|
|
5896
7908
|
type: "json-rpc";
|
|
7909
|
+
experimental_signAuthMessage?: undefined;
|
|
7910
|
+
signMessage?: undefined;
|
|
7911
|
+
signTransaction?: undefined;
|
|
7912
|
+
signTypedData?: undefined;
|
|
7913
|
+
publicKey?: undefined;
|
|
7914
|
+
source?: undefined;
|
|
7915
|
+
} | {
|
|
7916
|
+
address: `0x${string}`;
|
|
7917
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
7918
|
+
signMessage: ({ message }: {
|
|
7919
|
+
message: import("viem").SignableMessage;
|
|
7920
|
+
}) => Promise<`0x${string}`>;
|
|
7921
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
7922
|
+
serializer?: serializer | undefined;
|
|
7923
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
7924
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
7925
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
7926
|
+
[x: `string[${string}]`]: undefined;
|
|
7927
|
+
[x: `function[${string}]`]: undefined;
|
|
7928
|
+
[x: `address[${string}]`]: undefined;
|
|
7929
|
+
[x: `bool[${string}]`]: undefined;
|
|
7930
|
+
[x: `bytes[${string}]`]: undefined;
|
|
7931
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
7932
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
7933
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
7934
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
7935
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
7936
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
7937
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
7938
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
7939
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
7940
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
7941
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
7942
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
7943
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
7944
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
7945
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
7946
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
7947
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
7948
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
7949
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
7950
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
7951
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
7952
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
7953
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
7954
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
7955
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
7956
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
7957
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
7958
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
7959
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
7960
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
7961
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
7962
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
7963
|
+
[x: `int[${string}]`]: undefined;
|
|
7964
|
+
[x: `int8[${string}]`]: undefined;
|
|
7965
|
+
[x: `int16[${string}]`]: undefined;
|
|
7966
|
+
[x: `int24[${string}]`]: undefined;
|
|
7967
|
+
[x: `int32[${string}]`]: undefined;
|
|
7968
|
+
[x: `int40[${string}]`]: undefined;
|
|
7969
|
+
[x: `int48[${string}]`]: undefined;
|
|
7970
|
+
[x: `int56[${string}]`]: undefined;
|
|
7971
|
+
[x: `int64[${string}]`]: undefined;
|
|
7972
|
+
[x: `int72[${string}]`]: undefined;
|
|
7973
|
+
[x: `int80[${string}]`]: undefined;
|
|
7974
|
+
[x: `int88[${string}]`]: undefined;
|
|
7975
|
+
[x: `int96[${string}]`]: undefined;
|
|
7976
|
+
[x: `int104[${string}]`]: undefined;
|
|
7977
|
+
[x: `int112[${string}]`]: undefined;
|
|
7978
|
+
[x: `int120[${string}]`]: undefined;
|
|
7979
|
+
[x: `int128[${string}]`]: undefined;
|
|
7980
|
+
[x: `int136[${string}]`]: undefined;
|
|
7981
|
+
[x: `int144[${string}]`]: undefined;
|
|
7982
|
+
[x: `int152[${string}]`]: undefined;
|
|
7983
|
+
[x: `int160[${string}]`]: undefined;
|
|
7984
|
+
[x: `int168[${string}]`]: undefined;
|
|
7985
|
+
[x: `int176[${string}]`]: undefined;
|
|
7986
|
+
[x: `int184[${string}]`]: undefined;
|
|
7987
|
+
[x: `int192[${string}]`]: undefined;
|
|
7988
|
+
[x: `int200[${string}]`]: undefined;
|
|
7989
|
+
[x: `int208[${string}]`]: undefined;
|
|
7990
|
+
[x: `int216[${string}]`]: undefined;
|
|
7991
|
+
[x: `int224[${string}]`]: undefined;
|
|
7992
|
+
[x: `int232[${string}]`]: undefined;
|
|
7993
|
+
[x: `int240[${string}]`]: undefined;
|
|
7994
|
+
[x: `int248[${string}]`]: undefined;
|
|
7995
|
+
[x: `int256[${string}]`]: undefined;
|
|
7996
|
+
[x: `uint[${string}]`]: undefined;
|
|
7997
|
+
[x: `uint8[${string}]`]: undefined;
|
|
7998
|
+
[x: `uint16[${string}]`]: undefined;
|
|
7999
|
+
[x: `uint24[${string}]`]: undefined;
|
|
8000
|
+
[x: `uint32[${string}]`]: undefined;
|
|
8001
|
+
[x: `uint40[${string}]`]: undefined;
|
|
8002
|
+
[x: `uint48[${string}]`]: undefined;
|
|
8003
|
+
[x: `uint56[${string}]`]: undefined;
|
|
8004
|
+
[x: `uint64[${string}]`]: undefined;
|
|
8005
|
+
[x: `uint72[${string}]`]: undefined;
|
|
8006
|
+
[x: `uint80[${string}]`]: undefined;
|
|
8007
|
+
[x: `uint88[${string}]`]: undefined;
|
|
8008
|
+
[x: `uint96[${string}]`]: undefined;
|
|
8009
|
+
[x: `uint104[${string}]`]: undefined;
|
|
8010
|
+
[x: `uint112[${string}]`]: undefined;
|
|
8011
|
+
[x: `uint120[${string}]`]: undefined;
|
|
8012
|
+
[x: `uint128[${string}]`]: undefined;
|
|
8013
|
+
[x: `uint136[${string}]`]: undefined;
|
|
8014
|
+
[x: `uint144[${string}]`]: undefined;
|
|
8015
|
+
[x: `uint152[${string}]`]: undefined;
|
|
8016
|
+
[x: `uint160[${string}]`]: undefined;
|
|
8017
|
+
[x: `uint168[${string}]`]: undefined;
|
|
8018
|
+
[x: `uint176[${string}]`]: undefined;
|
|
8019
|
+
[x: `uint184[${string}]`]: undefined;
|
|
8020
|
+
[x: `uint192[${string}]`]: undefined;
|
|
8021
|
+
[x: `uint200[${string}]`]: undefined;
|
|
8022
|
+
[x: `uint208[${string}]`]: undefined;
|
|
8023
|
+
[x: `uint216[${string}]`]: undefined;
|
|
8024
|
+
[x: `uint224[${string}]`]: undefined;
|
|
8025
|
+
[x: `uint232[${string}]`]: undefined;
|
|
8026
|
+
[x: `uint240[${string}]`]: undefined;
|
|
8027
|
+
[x: `uint248[${string}]`]: undefined;
|
|
8028
|
+
[x: `uint256[${string}]`]: undefined;
|
|
8029
|
+
string?: undefined;
|
|
8030
|
+
address?: undefined;
|
|
8031
|
+
bool?: undefined;
|
|
8032
|
+
bytes?: undefined;
|
|
8033
|
+
bytes20?: undefined;
|
|
8034
|
+
bytes1?: undefined;
|
|
8035
|
+
bytes2?: undefined;
|
|
8036
|
+
bytes3?: undefined;
|
|
8037
|
+
bytes4?: undefined;
|
|
8038
|
+
bytes5?: undefined;
|
|
8039
|
+
bytes6?: undefined;
|
|
8040
|
+
bytes7?: undefined;
|
|
8041
|
+
bytes8?: undefined;
|
|
8042
|
+
bytes9?: undefined;
|
|
8043
|
+
bytes10?: undefined;
|
|
8044
|
+
bytes11?: undefined;
|
|
8045
|
+
bytes12?: undefined;
|
|
8046
|
+
bytes13?: undefined;
|
|
8047
|
+
bytes14?: undefined;
|
|
8048
|
+
bytes15?: undefined;
|
|
8049
|
+
bytes16?: undefined;
|
|
8050
|
+
bytes17?: undefined;
|
|
8051
|
+
bytes18?: undefined;
|
|
8052
|
+
bytes19?: undefined;
|
|
8053
|
+
bytes21?: undefined;
|
|
8054
|
+
bytes22?: undefined;
|
|
8055
|
+
bytes23?: undefined;
|
|
8056
|
+
bytes24?: undefined;
|
|
8057
|
+
bytes25?: undefined;
|
|
8058
|
+
bytes26?: undefined;
|
|
8059
|
+
bytes27?: undefined;
|
|
8060
|
+
bytes28?: undefined;
|
|
8061
|
+
bytes29?: undefined;
|
|
8062
|
+
bytes30?: undefined;
|
|
8063
|
+
bytes31?: undefined;
|
|
8064
|
+
bytes32?: undefined;
|
|
8065
|
+
int8?: undefined;
|
|
8066
|
+
int16?: undefined;
|
|
8067
|
+
int24?: undefined;
|
|
8068
|
+
int32?: undefined;
|
|
8069
|
+
int40?: undefined;
|
|
8070
|
+
int48?: undefined;
|
|
8071
|
+
int56?: undefined;
|
|
8072
|
+
int64?: undefined;
|
|
8073
|
+
int72?: undefined;
|
|
8074
|
+
int80?: undefined;
|
|
8075
|
+
int88?: undefined;
|
|
8076
|
+
int96?: undefined;
|
|
8077
|
+
int104?: undefined;
|
|
8078
|
+
int112?: undefined;
|
|
8079
|
+
int120?: undefined;
|
|
8080
|
+
int128?: undefined;
|
|
8081
|
+
int136?: undefined;
|
|
8082
|
+
int144?: undefined;
|
|
8083
|
+
int152?: undefined;
|
|
8084
|
+
int160?: undefined;
|
|
8085
|
+
int168?: undefined;
|
|
8086
|
+
int176?: undefined;
|
|
8087
|
+
int184?: undefined;
|
|
8088
|
+
int192?: undefined;
|
|
8089
|
+
int200?: undefined;
|
|
8090
|
+
int208?: undefined;
|
|
8091
|
+
int216?: undefined;
|
|
8092
|
+
int224?: undefined;
|
|
8093
|
+
int232?: undefined;
|
|
8094
|
+
int240?: undefined;
|
|
8095
|
+
int248?: undefined;
|
|
8096
|
+
int256?: undefined;
|
|
8097
|
+
uint8?: undefined;
|
|
8098
|
+
uint16?: undefined;
|
|
8099
|
+
uint24?: undefined;
|
|
8100
|
+
uint32?: undefined;
|
|
8101
|
+
uint40?: undefined;
|
|
8102
|
+
uint48?: undefined;
|
|
8103
|
+
uint56?: undefined;
|
|
8104
|
+
uint64?: undefined;
|
|
8105
|
+
uint72?: undefined;
|
|
8106
|
+
uint80?: undefined;
|
|
8107
|
+
uint88?: undefined;
|
|
8108
|
+
uint96?: undefined;
|
|
8109
|
+
uint104?: undefined;
|
|
8110
|
+
uint112?: undefined;
|
|
8111
|
+
uint120?: undefined;
|
|
8112
|
+
uint128?: undefined;
|
|
8113
|
+
uint136?: undefined;
|
|
8114
|
+
uint144?: undefined;
|
|
8115
|
+
uint152?: undefined;
|
|
8116
|
+
uint160?: undefined;
|
|
8117
|
+
uint168?: undefined;
|
|
8118
|
+
uint176?: undefined;
|
|
8119
|
+
uint184?: undefined;
|
|
8120
|
+
uint192?: undefined;
|
|
8121
|
+
uint200?: undefined;
|
|
8122
|
+
uint208?: undefined;
|
|
8123
|
+
uint216?: undefined;
|
|
8124
|
+
uint224?: undefined;
|
|
8125
|
+
uint232?: undefined;
|
|
8126
|
+
uint240?: undefined;
|
|
8127
|
+
uint248?: undefined;
|
|
8128
|
+
uint256?: undefined;
|
|
8129
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
8130
|
+
publicKey: `0x${string}`;
|
|
8131
|
+
source: string;
|
|
8132
|
+
type: "local";
|
|
5897
8133
|
}, TChainOverride_6>) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | import("viem").TransactionSerializedLegacy>;
|
|
5898
8134
|
signTypedData: <const TTypedData_1 extends {
|
|
5899
|
-
[key: string]: unknown;
|
|
5900
|
-
} | {
|
|
5901
8135
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
5902
8136
|
[x: `string[${string}]`]: undefined;
|
|
5903
8137
|
[x: `function[${string}]`]: undefined;
|
|
@@ -6102,15 +8336,465 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
6102
8336
|
uint240?: undefined;
|
|
6103
8337
|
uint248?: undefined;
|
|
6104
8338
|
uint256?: undefined;
|
|
8339
|
+
} | {
|
|
8340
|
+
[key: string]: unknown;
|
|
6105
8341
|
}, TPrimaryType_1 extends string>(args: import("viem").SignTypedDataParameters<TTypedData_1, TPrimaryType_1, {
|
|
6106
8342
|
address: `0x${string}`;
|
|
6107
8343
|
type: "json-rpc";
|
|
8344
|
+
experimental_signAuthMessage?: undefined;
|
|
8345
|
+
signMessage?: undefined;
|
|
8346
|
+
signTransaction?: undefined;
|
|
8347
|
+
signTypedData?: undefined;
|
|
8348
|
+
publicKey?: undefined;
|
|
8349
|
+
source?: undefined;
|
|
8350
|
+
} | {
|
|
8351
|
+
address: `0x${string}`;
|
|
8352
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
8353
|
+
signMessage: ({ message }: {
|
|
8354
|
+
message: import("viem").SignableMessage;
|
|
8355
|
+
}) => Promise<`0x${string}`>;
|
|
8356
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
8357
|
+
serializer?: serializer | undefined;
|
|
8358
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
8359
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
8360
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
8361
|
+
[x: `string[${string}]`]: undefined;
|
|
8362
|
+
[x: `function[${string}]`]: undefined;
|
|
8363
|
+
[x: `address[${string}]`]: undefined;
|
|
8364
|
+
[x: `bool[${string}]`]: undefined;
|
|
8365
|
+
[x: `bytes[${string}]`]: undefined;
|
|
8366
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
8367
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
8368
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
8369
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
8370
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
8371
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
8372
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
8373
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
8374
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
8375
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
8376
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
8377
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
8378
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
8379
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
8380
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
8381
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
8382
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
8383
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
8384
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
8385
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
8386
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
8387
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
8388
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
8389
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
8390
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
8391
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
8392
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
8393
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
8394
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
8395
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
8396
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
8397
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
8398
|
+
[x: `int[${string}]`]: undefined;
|
|
8399
|
+
[x: `int8[${string}]`]: undefined;
|
|
8400
|
+
[x: `int16[${string}]`]: undefined;
|
|
8401
|
+
[x: `int24[${string}]`]: undefined;
|
|
8402
|
+
[x: `int32[${string}]`]: undefined;
|
|
8403
|
+
[x: `int40[${string}]`]: undefined;
|
|
8404
|
+
[x: `int48[${string}]`]: undefined;
|
|
8405
|
+
[x: `int56[${string}]`]: undefined;
|
|
8406
|
+
[x: `int64[${string}]`]: undefined;
|
|
8407
|
+
[x: `int72[${string}]`]: undefined;
|
|
8408
|
+
[x: `int80[${string}]`]: undefined;
|
|
8409
|
+
[x: `int88[${string}]`]: undefined;
|
|
8410
|
+
[x: `int96[${string}]`]: undefined;
|
|
8411
|
+
[x: `int104[${string}]`]: undefined;
|
|
8412
|
+
[x: `int112[${string}]`]: undefined;
|
|
8413
|
+
[x: `int120[${string}]`]: undefined;
|
|
8414
|
+
[x: `int128[${string}]`]: undefined;
|
|
8415
|
+
[x: `int136[${string}]`]: undefined;
|
|
8416
|
+
[x: `int144[${string}]`]: undefined;
|
|
8417
|
+
[x: `int152[${string}]`]: undefined;
|
|
8418
|
+
[x: `int160[${string}]`]: undefined;
|
|
8419
|
+
[x: `int168[${string}]`]: undefined;
|
|
8420
|
+
[x: `int176[${string}]`]: undefined;
|
|
8421
|
+
[x: `int184[${string}]`]: undefined;
|
|
8422
|
+
[x: `int192[${string}]`]: undefined;
|
|
8423
|
+
[x: `int200[${string}]`]: undefined;
|
|
8424
|
+
[x: `int208[${string}]`]: undefined;
|
|
8425
|
+
[x: `int216[${string}]`]: undefined;
|
|
8426
|
+
[x: `int224[${string}]`]: undefined;
|
|
8427
|
+
[x: `int232[${string}]`]: undefined;
|
|
8428
|
+
[x: `int240[${string}]`]: undefined;
|
|
8429
|
+
[x: `int248[${string}]`]: undefined;
|
|
8430
|
+
[x: `int256[${string}]`]: undefined;
|
|
8431
|
+
[x: `uint[${string}]`]: undefined;
|
|
8432
|
+
[x: `uint8[${string}]`]: undefined;
|
|
8433
|
+
[x: `uint16[${string}]`]: undefined;
|
|
8434
|
+
[x: `uint24[${string}]`]: undefined;
|
|
8435
|
+
[x: `uint32[${string}]`]: undefined;
|
|
8436
|
+
[x: `uint40[${string}]`]: undefined;
|
|
8437
|
+
[x: `uint48[${string}]`]: undefined;
|
|
8438
|
+
[x: `uint56[${string}]`]: undefined;
|
|
8439
|
+
[x: `uint64[${string}]`]: undefined;
|
|
8440
|
+
[x: `uint72[${string}]`]: undefined;
|
|
8441
|
+
[x: `uint80[${string}]`]: undefined;
|
|
8442
|
+
[x: `uint88[${string}]`]: undefined;
|
|
8443
|
+
[x: `uint96[${string}]`]: undefined;
|
|
8444
|
+
[x: `uint104[${string}]`]: undefined;
|
|
8445
|
+
[x: `uint112[${string}]`]: undefined;
|
|
8446
|
+
[x: `uint120[${string}]`]: undefined;
|
|
8447
|
+
[x: `uint128[${string}]`]: undefined;
|
|
8448
|
+
[x: `uint136[${string}]`]: undefined;
|
|
8449
|
+
[x: `uint144[${string}]`]: undefined;
|
|
8450
|
+
[x: `uint152[${string}]`]: undefined;
|
|
8451
|
+
[x: `uint160[${string}]`]: undefined;
|
|
8452
|
+
[x: `uint168[${string}]`]: undefined;
|
|
8453
|
+
[x: `uint176[${string}]`]: undefined;
|
|
8454
|
+
[x: `uint184[${string}]`]: undefined;
|
|
8455
|
+
[x: `uint192[${string}]`]: undefined;
|
|
8456
|
+
[x: `uint200[${string}]`]: undefined;
|
|
8457
|
+
[x: `uint208[${string}]`]: undefined;
|
|
8458
|
+
[x: `uint216[${string}]`]: undefined;
|
|
8459
|
+
[x: `uint224[${string}]`]: undefined;
|
|
8460
|
+
[x: `uint232[${string}]`]: undefined;
|
|
8461
|
+
[x: `uint240[${string}]`]: undefined;
|
|
8462
|
+
[x: `uint248[${string}]`]: undefined;
|
|
8463
|
+
[x: `uint256[${string}]`]: undefined;
|
|
8464
|
+
string?: undefined;
|
|
8465
|
+
address?: undefined;
|
|
8466
|
+
bool?: undefined;
|
|
8467
|
+
bytes?: undefined;
|
|
8468
|
+
bytes20?: undefined;
|
|
8469
|
+
bytes1?: undefined;
|
|
8470
|
+
bytes2?: undefined;
|
|
8471
|
+
bytes3?: undefined;
|
|
8472
|
+
bytes4?: undefined;
|
|
8473
|
+
bytes5?: undefined;
|
|
8474
|
+
bytes6?: undefined;
|
|
8475
|
+
bytes7?: undefined;
|
|
8476
|
+
bytes8?: undefined;
|
|
8477
|
+
bytes9?: undefined;
|
|
8478
|
+
bytes10?: undefined;
|
|
8479
|
+
bytes11?: undefined;
|
|
8480
|
+
bytes12?: undefined;
|
|
8481
|
+
bytes13?: undefined;
|
|
8482
|
+
bytes14?: undefined;
|
|
8483
|
+
bytes15?: undefined;
|
|
8484
|
+
bytes16?: undefined;
|
|
8485
|
+
bytes17?: undefined;
|
|
8486
|
+
bytes18?: undefined;
|
|
8487
|
+
bytes19?: undefined;
|
|
8488
|
+
bytes21?: undefined;
|
|
8489
|
+
bytes22?: undefined;
|
|
8490
|
+
bytes23?: undefined;
|
|
8491
|
+
bytes24?: undefined;
|
|
8492
|
+
bytes25?: undefined;
|
|
8493
|
+
bytes26?: undefined;
|
|
8494
|
+
bytes27?: undefined;
|
|
8495
|
+
bytes28?: undefined;
|
|
8496
|
+
bytes29?: undefined;
|
|
8497
|
+
bytes30?: undefined;
|
|
8498
|
+
bytes31?: undefined;
|
|
8499
|
+
bytes32?: undefined;
|
|
8500
|
+
int8?: undefined;
|
|
8501
|
+
int16?: undefined;
|
|
8502
|
+
int24?: undefined;
|
|
8503
|
+
int32?: undefined;
|
|
8504
|
+
int40?: undefined;
|
|
8505
|
+
int48?: undefined;
|
|
8506
|
+
int56?: undefined;
|
|
8507
|
+
int64?: undefined;
|
|
8508
|
+
int72?: undefined;
|
|
8509
|
+
int80?: undefined;
|
|
8510
|
+
int88?: undefined;
|
|
8511
|
+
int96?: undefined;
|
|
8512
|
+
int104?: undefined;
|
|
8513
|
+
int112?: undefined;
|
|
8514
|
+
int120?: undefined;
|
|
8515
|
+
int128?: undefined;
|
|
8516
|
+
int136?: undefined;
|
|
8517
|
+
int144?: undefined;
|
|
8518
|
+
int152?: undefined;
|
|
8519
|
+
int160?: undefined;
|
|
8520
|
+
int168?: undefined;
|
|
8521
|
+
int176?: undefined;
|
|
8522
|
+
int184?: undefined;
|
|
8523
|
+
int192?: undefined;
|
|
8524
|
+
int200?: undefined;
|
|
8525
|
+
int208?: undefined;
|
|
8526
|
+
int216?: undefined;
|
|
8527
|
+
int224?: undefined;
|
|
8528
|
+
int232?: undefined;
|
|
8529
|
+
int240?: undefined;
|
|
8530
|
+
int248?: undefined;
|
|
8531
|
+
int256?: undefined;
|
|
8532
|
+
uint8?: undefined;
|
|
8533
|
+
uint16?: undefined;
|
|
8534
|
+
uint24?: undefined;
|
|
8535
|
+
uint32?: undefined;
|
|
8536
|
+
uint40?: undefined;
|
|
8537
|
+
uint48?: undefined;
|
|
8538
|
+
uint56?: undefined;
|
|
8539
|
+
uint64?: undefined;
|
|
8540
|
+
uint72?: undefined;
|
|
8541
|
+
uint80?: undefined;
|
|
8542
|
+
uint88?: undefined;
|
|
8543
|
+
uint96?: undefined;
|
|
8544
|
+
uint104?: undefined;
|
|
8545
|
+
uint112?: undefined;
|
|
8546
|
+
uint120?: undefined;
|
|
8547
|
+
uint128?: undefined;
|
|
8548
|
+
uint136?: undefined;
|
|
8549
|
+
uint144?: undefined;
|
|
8550
|
+
uint152?: undefined;
|
|
8551
|
+
uint160?: undefined;
|
|
8552
|
+
uint168?: undefined;
|
|
8553
|
+
uint176?: undefined;
|
|
8554
|
+
uint184?: undefined;
|
|
8555
|
+
uint192?: undefined;
|
|
8556
|
+
uint200?: undefined;
|
|
8557
|
+
uint208?: undefined;
|
|
8558
|
+
uint216?: undefined;
|
|
8559
|
+
uint224?: undefined;
|
|
8560
|
+
uint232?: undefined;
|
|
8561
|
+
uint240?: undefined;
|
|
8562
|
+
uint248?: undefined;
|
|
8563
|
+
uint256?: undefined;
|
|
8564
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
8565
|
+
publicKey: `0x${string}`;
|
|
8566
|
+
source: string;
|
|
8567
|
+
type: "local";
|
|
6108
8568
|
}>) => Promise<`0x${string}`>;
|
|
6109
8569
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
6110
8570
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
6111
|
-
writeContract: <const abi_3 extends import("viem").Abi | readonly unknown[], functionName_1 extends import("viem").ContractFunctionName<abi_3, "payable" | "nonpayable">, args_1 extends import("viem").ContractFunctionArgs<abi_3, "payable" | "nonpayable", functionName_1>, TChainOverride_7 extends Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_3, functionName_1, args_1, Chain, {
|
|
8571
|
+
writeContract: <const abi_3 extends import("viem").Abi | readonly unknown[], functionName_1 extends import("viem").ContractFunctionName<abi_3, "payable" | "nonpayable">, args_1 extends import("viem").ContractFunctionArgs<abi_3, "payable" | "nonpayable", functionName_1>, TChainOverride_7 extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_3, functionName_1, args_1, import("viem").Chain, {
|
|
6112
8572
|
address: `0x${string}`;
|
|
6113
8573
|
type: "json-rpc";
|
|
8574
|
+
experimental_signAuthMessage?: undefined;
|
|
8575
|
+
signMessage?: undefined;
|
|
8576
|
+
signTransaction?: undefined;
|
|
8577
|
+
signTypedData?: undefined;
|
|
8578
|
+
publicKey?: undefined;
|
|
8579
|
+
source?: undefined;
|
|
8580
|
+
} | {
|
|
8581
|
+
address: `0x${string}`;
|
|
8582
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
8583
|
+
signMessage: ({ message }: {
|
|
8584
|
+
message: import("viem").SignableMessage;
|
|
8585
|
+
}) => Promise<`0x${string}`>;
|
|
8586
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
8587
|
+
serializer?: serializer | undefined;
|
|
8588
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
8589
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
8590
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
8591
|
+
[x: `string[${string}]`]: undefined;
|
|
8592
|
+
[x: `function[${string}]`]: undefined;
|
|
8593
|
+
[x: `address[${string}]`]: undefined;
|
|
8594
|
+
[x: `bool[${string}]`]: undefined;
|
|
8595
|
+
[x: `bytes[${string}]`]: undefined;
|
|
8596
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
8597
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
8598
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
8599
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
8600
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
8601
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
8602
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
8603
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
8604
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
8605
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
8606
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
8607
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
8608
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
8609
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
8610
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
8611
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
8612
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
8613
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
8614
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
8615
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
8616
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
8617
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
8618
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
8619
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
8620
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
8621
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
8622
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
8623
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
8624
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
8625
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
8626
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
8627
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
8628
|
+
[x: `int[${string}]`]: undefined;
|
|
8629
|
+
[x: `int8[${string}]`]: undefined;
|
|
8630
|
+
[x: `int16[${string}]`]: undefined;
|
|
8631
|
+
[x: `int24[${string}]`]: undefined;
|
|
8632
|
+
[x: `int32[${string}]`]: undefined;
|
|
8633
|
+
[x: `int40[${string}]`]: undefined;
|
|
8634
|
+
[x: `int48[${string}]`]: undefined;
|
|
8635
|
+
[x: `int56[${string}]`]: undefined;
|
|
8636
|
+
[x: `int64[${string}]`]: undefined;
|
|
8637
|
+
[x: `int72[${string}]`]: undefined;
|
|
8638
|
+
[x: `int80[${string}]`]: undefined;
|
|
8639
|
+
[x: `int88[${string}]`]: undefined;
|
|
8640
|
+
[x: `int96[${string}]`]: undefined;
|
|
8641
|
+
[x: `int104[${string}]`]: undefined;
|
|
8642
|
+
[x: `int112[${string}]`]: undefined;
|
|
8643
|
+
[x: `int120[${string}]`]: undefined;
|
|
8644
|
+
[x: `int128[${string}]`]: undefined;
|
|
8645
|
+
[x: `int136[${string}]`]: undefined;
|
|
8646
|
+
[x: `int144[${string}]`]: undefined;
|
|
8647
|
+
[x: `int152[${string}]`]: undefined;
|
|
8648
|
+
[x: `int160[${string}]`]: undefined;
|
|
8649
|
+
[x: `int168[${string}]`]: undefined;
|
|
8650
|
+
[x: `int176[${string}]`]: undefined;
|
|
8651
|
+
[x: `int184[${string}]`]: undefined;
|
|
8652
|
+
[x: `int192[${string}]`]: undefined;
|
|
8653
|
+
[x: `int200[${string}]`]: undefined;
|
|
8654
|
+
[x: `int208[${string}]`]: undefined;
|
|
8655
|
+
[x: `int216[${string}]`]: undefined;
|
|
8656
|
+
[x: `int224[${string}]`]: undefined;
|
|
8657
|
+
[x: `int232[${string}]`]: undefined;
|
|
8658
|
+
[x: `int240[${string}]`]: undefined;
|
|
8659
|
+
[x: `int248[${string}]`]: undefined;
|
|
8660
|
+
[x: `int256[${string}]`]: undefined;
|
|
8661
|
+
[x: `uint[${string}]`]: undefined;
|
|
8662
|
+
[x: `uint8[${string}]`]: undefined;
|
|
8663
|
+
[x: `uint16[${string}]`]: undefined;
|
|
8664
|
+
[x: `uint24[${string}]`]: undefined;
|
|
8665
|
+
[x: `uint32[${string}]`]: undefined;
|
|
8666
|
+
[x: `uint40[${string}]`]: undefined;
|
|
8667
|
+
[x: `uint48[${string}]`]: undefined;
|
|
8668
|
+
[x: `uint56[${string}]`]: undefined;
|
|
8669
|
+
[x: `uint64[${string}]`]: undefined;
|
|
8670
|
+
[x: `uint72[${string}]`]: undefined;
|
|
8671
|
+
[x: `uint80[${string}]`]: undefined;
|
|
8672
|
+
[x: `uint88[${string}]`]: undefined;
|
|
8673
|
+
[x: `uint96[${string}]`]: undefined;
|
|
8674
|
+
[x: `uint104[${string}]`]: undefined;
|
|
8675
|
+
[x: `uint112[${string}]`]: undefined;
|
|
8676
|
+
[x: `uint120[${string}]`]: undefined;
|
|
8677
|
+
[x: `uint128[${string}]`]: undefined;
|
|
8678
|
+
[x: `uint136[${string}]`]: undefined;
|
|
8679
|
+
[x: `uint144[${string}]`]: undefined;
|
|
8680
|
+
[x: `uint152[${string}]`]: undefined;
|
|
8681
|
+
[x: `uint160[${string}]`]: undefined;
|
|
8682
|
+
[x: `uint168[${string}]`]: undefined;
|
|
8683
|
+
[x: `uint176[${string}]`]: undefined;
|
|
8684
|
+
[x: `uint184[${string}]`]: undefined;
|
|
8685
|
+
[x: `uint192[${string}]`]: undefined;
|
|
8686
|
+
[x: `uint200[${string}]`]: undefined;
|
|
8687
|
+
[x: `uint208[${string}]`]: undefined;
|
|
8688
|
+
[x: `uint216[${string}]`]: undefined;
|
|
8689
|
+
[x: `uint224[${string}]`]: undefined;
|
|
8690
|
+
[x: `uint232[${string}]`]: undefined;
|
|
8691
|
+
[x: `uint240[${string}]`]: undefined;
|
|
8692
|
+
[x: `uint248[${string}]`]: undefined;
|
|
8693
|
+
[x: `uint256[${string}]`]: undefined;
|
|
8694
|
+
string?: undefined;
|
|
8695
|
+
address?: undefined;
|
|
8696
|
+
bool?: undefined;
|
|
8697
|
+
bytes?: undefined;
|
|
8698
|
+
bytes20?: undefined;
|
|
8699
|
+
bytes1?: undefined;
|
|
8700
|
+
bytes2?: undefined;
|
|
8701
|
+
bytes3?: undefined;
|
|
8702
|
+
bytes4?: undefined;
|
|
8703
|
+
bytes5?: undefined;
|
|
8704
|
+
bytes6?: undefined;
|
|
8705
|
+
bytes7?: undefined;
|
|
8706
|
+
bytes8?: undefined;
|
|
8707
|
+
bytes9?: undefined;
|
|
8708
|
+
bytes10?: undefined;
|
|
8709
|
+
bytes11?: undefined;
|
|
8710
|
+
bytes12?: undefined;
|
|
8711
|
+
bytes13?: undefined;
|
|
8712
|
+
bytes14?: undefined;
|
|
8713
|
+
bytes15?: undefined;
|
|
8714
|
+
bytes16?: undefined;
|
|
8715
|
+
bytes17?: undefined;
|
|
8716
|
+
bytes18?: undefined;
|
|
8717
|
+
bytes19?: undefined;
|
|
8718
|
+
bytes21?: undefined;
|
|
8719
|
+
bytes22?: undefined;
|
|
8720
|
+
bytes23?: undefined;
|
|
8721
|
+
bytes24?: undefined;
|
|
8722
|
+
bytes25?: undefined;
|
|
8723
|
+
bytes26?: undefined;
|
|
8724
|
+
bytes27?: undefined;
|
|
8725
|
+
bytes28?: undefined;
|
|
8726
|
+
bytes29?: undefined;
|
|
8727
|
+
bytes30?: undefined;
|
|
8728
|
+
bytes31?: undefined;
|
|
8729
|
+
bytes32?: undefined;
|
|
8730
|
+
int8?: undefined;
|
|
8731
|
+
int16?: undefined;
|
|
8732
|
+
int24?: undefined;
|
|
8733
|
+
int32?: undefined;
|
|
8734
|
+
int40?: undefined;
|
|
8735
|
+
int48?: undefined;
|
|
8736
|
+
int56?: undefined;
|
|
8737
|
+
int64?: undefined;
|
|
8738
|
+
int72?: undefined;
|
|
8739
|
+
int80?: undefined;
|
|
8740
|
+
int88?: undefined;
|
|
8741
|
+
int96?: undefined;
|
|
8742
|
+
int104?: undefined;
|
|
8743
|
+
int112?: undefined;
|
|
8744
|
+
int120?: undefined;
|
|
8745
|
+
int128?: undefined;
|
|
8746
|
+
int136?: undefined;
|
|
8747
|
+
int144?: undefined;
|
|
8748
|
+
int152?: undefined;
|
|
8749
|
+
int160?: undefined;
|
|
8750
|
+
int168?: undefined;
|
|
8751
|
+
int176?: undefined;
|
|
8752
|
+
int184?: undefined;
|
|
8753
|
+
int192?: undefined;
|
|
8754
|
+
int200?: undefined;
|
|
8755
|
+
int208?: undefined;
|
|
8756
|
+
int216?: undefined;
|
|
8757
|
+
int224?: undefined;
|
|
8758
|
+
int232?: undefined;
|
|
8759
|
+
int240?: undefined;
|
|
8760
|
+
int248?: undefined;
|
|
8761
|
+
int256?: undefined;
|
|
8762
|
+
uint8?: undefined;
|
|
8763
|
+
uint16?: undefined;
|
|
8764
|
+
uint24?: undefined;
|
|
8765
|
+
uint32?: undefined;
|
|
8766
|
+
uint40?: undefined;
|
|
8767
|
+
uint48?: undefined;
|
|
8768
|
+
uint56?: undefined;
|
|
8769
|
+
uint64?: undefined;
|
|
8770
|
+
uint72?: undefined;
|
|
8771
|
+
uint80?: undefined;
|
|
8772
|
+
uint88?: undefined;
|
|
8773
|
+
uint96?: undefined;
|
|
8774
|
+
uint104?: undefined;
|
|
8775
|
+
uint112?: undefined;
|
|
8776
|
+
uint120?: undefined;
|
|
8777
|
+
uint128?: undefined;
|
|
8778
|
+
uint136?: undefined;
|
|
8779
|
+
uint144?: undefined;
|
|
8780
|
+
uint152?: undefined;
|
|
8781
|
+
uint160?: undefined;
|
|
8782
|
+
uint168?: undefined;
|
|
8783
|
+
uint176?: undefined;
|
|
8784
|
+
uint184?: undefined;
|
|
8785
|
+
uint192?: undefined;
|
|
8786
|
+
uint200?: undefined;
|
|
8787
|
+
uint208?: undefined;
|
|
8788
|
+
uint216?: undefined;
|
|
8789
|
+
uint224?: undefined;
|
|
8790
|
+
uint232?: undefined;
|
|
8791
|
+
uint240?: undefined;
|
|
8792
|
+
uint248?: undefined;
|
|
8793
|
+
uint256?: undefined;
|
|
8794
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
8795
|
+
publicKey: `0x${string}`;
|
|
8796
|
+
source: string;
|
|
8797
|
+
type: "local";
|
|
6114
8798
|
}, TChainOverride_7>) => Promise<`0x${string}`>;
|
|
6115
8799
|
extend: <const client_1 extends {
|
|
6116
8800
|
[x: string]: unknown;
|
|
@@ -6126,28 +8810,1372 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
6126
8810
|
transport?: undefined;
|
|
6127
8811
|
type?: undefined;
|
|
6128
8812
|
uid?: undefined;
|
|
6129
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").CustomTransport, Chain, {
|
|
8813
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").CustomTransport, import("viem").Chain, {
|
|
6130
8814
|
address: `0x${string}`;
|
|
6131
8815
|
type: "json-rpc";
|
|
6132
|
-
|
|
8816
|
+
experimental_signAuthMessage?: undefined;
|
|
8817
|
+
signMessage?: undefined;
|
|
8818
|
+
signTransaction?: undefined;
|
|
8819
|
+
signTypedData?: undefined;
|
|
8820
|
+
publicKey?: undefined;
|
|
8821
|
+
source?: undefined;
|
|
8822
|
+
} | {
|
|
8823
|
+
address: `0x${string}`;
|
|
8824
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
8825
|
+
signMessage: ({ message }: {
|
|
8826
|
+
message: import("viem").SignableMessage;
|
|
8827
|
+
}) => Promise<`0x${string}`>;
|
|
8828
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
8829
|
+
serializer?: serializer | undefined;
|
|
8830
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
8831
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
8832
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
8833
|
+
[x: `string[${string}]`]: undefined;
|
|
8834
|
+
[x: `function[${string}]`]: undefined;
|
|
8835
|
+
[x: `address[${string}]`]: undefined;
|
|
8836
|
+
[x: `bool[${string}]`]: undefined;
|
|
8837
|
+
[x: `bytes[${string}]`]: undefined;
|
|
8838
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
8839
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
8840
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
8841
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
8842
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
8843
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
8844
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
8845
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
8846
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
8847
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
8848
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
8849
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
8850
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
8851
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
8852
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
8853
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
8854
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
8855
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
8856
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
8857
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
8858
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
8859
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
8860
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
8861
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
8862
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
8863
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
8864
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
8865
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
8866
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
8867
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
8868
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
8869
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
8870
|
+
[x: `int[${string}]`]: undefined;
|
|
8871
|
+
[x: `int8[${string}]`]: undefined;
|
|
8872
|
+
[x: `int16[${string}]`]: undefined;
|
|
8873
|
+
[x: `int24[${string}]`]: undefined;
|
|
8874
|
+
[x: `int32[${string}]`]: undefined;
|
|
8875
|
+
[x: `int40[${string}]`]: undefined;
|
|
8876
|
+
[x: `int48[${string}]`]: undefined;
|
|
8877
|
+
[x: `int56[${string}]`]: undefined;
|
|
8878
|
+
[x: `int64[${string}]`]: undefined;
|
|
8879
|
+
[x: `int72[${string}]`]: undefined;
|
|
8880
|
+
[x: `int80[${string}]`]: undefined;
|
|
8881
|
+
[x: `int88[${string}]`]: undefined;
|
|
8882
|
+
[x: `int96[${string}]`]: undefined;
|
|
8883
|
+
[x: `int104[${string}]`]: undefined;
|
|
8884
|
+
[x: `int112[${string}]`]: undefined;
|
|
8885
|
+
[x: `int120[${string}]`]: undefined;
|
|
8886
|
+
[x: `int128[${string}]`]: undefined;
|
|
8887
|
+
[x: `int136[${string}]`]: undefined;
|
|
8888
|
+
[x: `int144[${string}]`]: undefined;
|
|
8889
|
+
[x: `int152[${string}]`]: undefined;
|
|
8890
|
+
[x: `int160[${string}]`]: undefined;
|
|
8891
|
+
[x: `int168[${string}]`]: undefined;
|
|
8892
|
+
[x: `int176[${string}]`]: undefined;
|
|
8893
|
+
[x: `int184[${string}]`]: undefined;
|
|
8894
|
+
[x: `int192[${string}]`]: undefined;
|
|
8895
|
+
[x: `int200[${string}]`]: undefined;
|
|
8896
|
+
[x: `int208[${string}]`]: undefined;
|
|
8897
|
+
[x: `int216[${string}]`]: undefined;
|
|
8898
|
+
[x: `int224[${string}]`]: undefined;
|
|
8899
|
+
[x: `int232[${string}]`]: undefined;
|
|
8900
|
+
[x: `int240[${string}]`]: undefined;
|
|
8901
|
+
[x: `int248[${string}]`]: undefined;
|
|
8902
|
+
[x: `int256[${string}]`]: undefined;
|
|
8903
|
+
[x: `uint[${string}]`]: undefined;
|
|
8904
|
+
[x: `uint8[${string}]`]: undefined;
|
|
8905
|
+
[x: `uint16[${string}]`]: undefined;
|
|
8906
|
+
[x: `uint24[${string}]`]: undefined;
|
|
8907
|
+
[x: `uint32[${string}]`]: undefined;
|
|
8908
|
+
[x: `uint40[${string}]`]: undefined;
|
|
8909
|
+
[x: `uint48[${string}]`]: undefined;
|
|
8910
|
+
[x: `uint56[${string}]`]: undefined;
|
|
8911
|
+
[x: `uint64[${string}]`]: undefined;
|
|
8912
|
+
[x: `uint72[${string}]`]: undefined;
|
|
8913
|
+
[x: `uint80[${string}]`]: undefined;
|
|
8914
|
+
[x: `uint88[${string}]`]: undefined;
|
|
8915
|
+
[x: `uint96[${string}]`]: undefined;
|
|
8916
|
+
[x: `uint104[${string}]`]: undefined;
|
|
8917
|
+
[x: `uint112[${string}]`]: undefined;
|
|
8918
|
+
[x: `uint120[${string}]`]: undefined;
|
|
8919
|
+
[x: `uint128[${string}]`]: undefined;
|
|
8920
|
+
[x: `uint136[${string}]`]: undefined;
|
|
8921
|
+
[x: `uint144[${string}]`]: undefined;
|
|
8922
|
+
[x: `uint152[${string}]`]: undefined;
|
|
8923
|
+
[x: `uint160[${string}]`]: undefined;
|
|
8924
|
+
[x: `uint168[${string}]`]: undefined;
|
|
8925
|
+
[x: `uint176[${string}]`]: undefined;
|
|
8926
|
+
[x: `uint184[${string}]`]: undefined;
|
|
8927
|
+
[x: `uint192[${string}]`]: undefined;
|
|
8928
|
+
[x: `uint200[${string}]`]: undefined;
|
|
8929
|
+
[x: `uint208[${string}]`]: undefined;
|
|
8930
|
+
[x: `uint216[${string}]`]: undefined;
|
|
8931
|
+
[x: `uint224[${string}]`]: undefined;
|
|
8932
|
+
[x: `uint232[${string}]`]: undefined;
|
|
8933
|
+
[x: `uint240[${string}]`]: undefined;
|
|
8934
|
+
[x: `uint248[${string}]`]: undefined;
|
|
8935
|
+
[x: `uint256[${string}]`]: undefined;
|
|
8936
|
+
string?: undefined;
|
|
8937
|
+
address?: undefined;
|
|
8938
|
+
bool?: undefined;
|
|
8939
|
+
bytes?: undefined;
|
|
8940
|
+
bytes20?: undefined;
|
|
8941
|
+
bytes1?: undefined;
|
|
8942
|
+
bytes2?: undefined;
|
|
8943
|
+
bytes3?: undefined;
|
|
8944
|
+
bytes4?: undefined;
|
|
8945
|
+
bytes5?: undefined;
|
|
8946
|
+
bytes6?: undefined;
|
|
8947
|
+
bytes7?: undefined;
|
|
8948
|
+
bytes8?: undefined;
|
|
8949
|
+
bytes9?: undefined;
|
|
8950
|
+
bytes10?: undefined;
|
|
8951
|
+
bytes11?: undefined;
|
|
8952
|
+
bytes12?: undefined;
|
|
8953
|
+
bytes13?: undefined;
|
|
8954
|
+
bytes14?: undefined;
|
|
8955
|
+
bytes15?: undefined;
|
|
8956
|
+
bytes16?: undefined;
|
|
8957
|
+
bytes17?: undefined;
|
|
8958
|
+
bytes18?: undefined;
|
|
8959
|
+
bytes19?: undefined;
|
|
8960
|
+
bytes21?: undefined;
|
|
8961
|
+
bytes22?: undefined;
|
|
8962
|
+
bytes23?: undefined;
|
|
8963
|
+
bytes24?: undefined;
|
|
8964
|
+
bytes25?: undefined;
|
|
8965
|
+
bytes26?: undefined;
|
|
8966
|
+
bytes27?: undefined;
|
|
8967
|
+
bytes28?: undefined;
|
|
8968
|
+
bytes29?: undefined;
|
|
8969
|
+
bytes30?: undefined;
|
|
8970
|
+
bytes31?: undefined;
|
|
8971
|
+
bytes32?: undefined;
|
|
8972
|
+
int8?: undefined;
|
|
8973
|
+
int16?: undefined;
|
|
8974
|
+
int24?: undefined;
|
|
8975
|
+
int32?: undefined;
|
|
8976
|
+
int40?: undefined;
|
|
8977
|
+
int48?: undefined;
|
|
8978
|
+
int56?: undefined;
|
|
8979
|
+
int64?: undefined;
|
|
8980
|
+
int72?: undefined;
|
|
8981
|
+
int80?: undefined;
|
|
8982
|
+
int88?: undefined;
|
|
8983
|
+
int96?: undefined;
|
|
8984
|
+
int104?: undefined;
|
|
8985
|
+
int112?: undefined;
|
|
8986
|
+
int120?: undefined;
|
|
8987
|
+
int128?: undefined;
|
|
8988
|
+
int136?: undefined;
|
|
8989
|
+
int144?: undefined;
|
|
8990
|
+
int152?: undefined;
|
|
8991
|
+
int160?: undefined;
|
|
8992
|
+
int168?: undefined;
|
|
8993
|
+
int176?: undefined;
|
|
8994
|
+
int184?: undefined;
|
|
8995
|
+
int192?: undefined;
|
|
8996
|
+
int200?: undefined;
|
|
8997
|
+
int208?: undefined;
|
|
8998
|
+
int216?: undefined;
|
|
8999
|
+
int224?: undefined;
|
|
9000
|
+
int232?: undefined;
|
|
9001
|
+
int240?: undefined;
|
|
9002
|
+
int248?: undefined;
|
|
9003
|
+
int256?: undefined;
|
|
9004
|
+
uint8?: undefined;
|
|
9005
|
+
uint16?: undefined;
|
|
9006
|
+
uint24?: undefined;
|
|
9007
|
+
uint32?: undefined;
|
|
9008
|
+
uint40?: undefined;
|
|
9009
|
+
uint48?: undefined;
|
|
9010
|
+
uint56?: undefined;
|
|
9011
|
+
uint64?: undefined;
|
|
9012
|
+
uint72?: undefined;
|
|
9013
|
+
uint80?: undefined;
|
|
9014
|
+
uint88?: undefined;
|
|
9015
|
+
uint96?: undefined;
|
|
9016
|
+
uint104?: undefined;
|
|
9017
|
+
uint112?: undefined;
|
|
9018
|
+
uint120?: undefined;
|
|
9019
|
+
uint128?: undefined;
|
|
9020
|
+
uint136?: undefined;
|
|
9021
|
+
uint144?: undefined;
|
|
9022
|
+
uint152?: undefined;
|
|
9023
|
+
uint160?: undefined;
|
|
9024
|
+
uint168?: undefined;
|
|
9025
|
+
uint176?: undefined;
|
|
9026
|
+
uint184?: undefined;
|
|
9027
|
+
uint192?: undefined;
|
|
9028
|
+
uint200?: undefined;
|
|
9029
|
+
uint208?: undefined;
|
|
9030
|
+
uint216?: undefined;
|
|
9031
|
+
uint224?: undefined;
|
|
9032
|
+
uint232?: undefined;
|
|
9033
|
+
uint240?: undefined;
|
|
9034
|
+
uint248?: undefined;
|
|
9035
|
+
uint256?: undefined;
|
|
9036
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
9037
|
+
publicKey: `0x${string}`;
|
|
9038
|
+
source: string;
|
|
9039
|
+
type: "local";
|
|
9040
|
+
}>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<import("viem").Chain, {
|
|
6133
9041
|
address: `0x${string}`;
|
|
6134
9042
|
type: "json-rpc";
|
|
6135
|
-
|
|
9043
|
+
experimental_signAuthMessage?: undefined;
|
|
9044
|
+
signMessage?: undefined;
|
|
9045
|
+
signTransaction?: undefined;
|
|
9046
|
+
signTypedData?: undefined;
|
|
9047
|
+
publicKey?: undefined;
|
|
9048
|
+
source?: undefined;
|
|
9049
|
+
} | {
|
|
9050
|
+
address: `0x${string}`;
|
|
9051
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
9052
|
+
signMessage: ({ message }: {
|
|
9053
|
+
message: import("viem").SignableMessage;
|
|
9054
|
+
}) => Promise<`0x${string}`>;
|
|
9055
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
9056
|
+
serializer?: serializer | undefined;
|
|
9057
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
9058
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
9059
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
9060
|
+
[x: `string[${string}]`]: undefined;
|
|
9061
|
+
[x: `function[${string}]`]: undefined;
|
|
9062
|
+
[x: `address[${string}]`]: undefined;
|
|
9063
|
+
[x: `bool[${string}]`]: undefined;
|
|
9064
|
+
[x: `bytes[${string}]`]: undefined;
|
|
9065
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
9066
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
9067
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
9068
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
9069
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
9070
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
9071
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
9072
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
9073
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
9074
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
9075
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
9076
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
9077
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
9078
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
9079
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
9080
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
9081
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
9082
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
9083
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
9084
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
9085
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
9086
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
9087
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
9088
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
9089
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
9090
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
9091
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
9092
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
9093
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
9094
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
9095
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
9096
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
9097
|
+
[x: `int[${string}]`]: undefined;
|
|
9098
|
+
[x: `int8[${string}]`]: undefined;
|
|
9099
|
+
[x: `int16[${string}]`]: undefined;
|
|
9100
|
+
[x: `int24[${string}]`]: undefined;
|
|
9101
|
+
[x: `int32[${string}]`]: undefined;
|
|
9102
|
+
[x: `int40[${string}]`]: undefined;
|
|
9103
|
+
[x: `int48[${string}]`]: undefined;
|
|
9104
|
+
[x: `int56[${string}]`]: undefined;
|
|
9105
|
+
[x: `int64[${string}]`]: undefined;
|
|
9106
|
+
[x: `int72[${string}]`]: undefined;
|
|
9107
|
+
[x: `int80[${string}]`]: undefined;
|
|
9108
|
+
[x: `int88[${string}]`]: undefined;
|
|
9109
|
+
[x: `int96[${string}]`]: undefined;
|
|
9110
|
+
[x: `int104[${string}]`]: undefined;
|
|
9111
|
+
[x: `int112[${string}]`]: undefined;
|
|
9112
|
+
[x: `int120[${string}]`]: undefined;
|
|
9113
|
+
[x: `int128[${string}]`]: undefined;
|
|
9114
|
+
[x: `int136[${string}]`]: undefined;
|
|
9115
|
+
[x: `int144[${string}]`]: undefined;
|
|
9116
|
+
[x: `int152[${string}]`]: undefined;
|
|
9117
|
+
[x: `int160[${string}]`]: undefined;
|
|
9118
|
+
[x: `int168[${string}]`]: undefined;
|
|
9119
|
+
[x: `int176[${string}]`]: undefined;
|
|
9120
|
+
[x: `int184[${string}]`]: undefined;
|
|
9121
|
+
[x: `int192[${string}]`]: undefined;
|
|
9122
|
+
[x: `int200[${string}]`]: undefined;
|
|
9123
|
+
[x: `int208[${string}]`]: undefined;
|
|
9124
|
+
[x: `int216[${string}]`]: undefined;
|
|
9125
|
+
[x: `int224[${string}]`]: undefined;
|
|
9126
|
+
[x: `int232[${string}]`]: undefined;
|
|
9127
|
+
[x: `int240[${string}]`]: undefined;
|
|
9128
|
+
[x: `int248[${string}]`]: undefined;
|
|
9129
|
+
[x: `int256[${string}]`]: undefined;
|
|
9130
|
+
[x: `uint[${string}]`]: undefined;
|
|
9131
|
+
[x: `uint8[${string}]`]: undefined;
|
|
9132
|
+
[x: `uint16[${string}]`]: undefined;
|
|
9133
|
+
[x: `uint24[${string}]`]: undefined;
|
|
9134
|
+
[x: `uint32[${string}]`]: undefined;
|
|
9135
|
+
[x: `uint40[${string}]`]: undefined;
|
|
9136
|
+
[x: `uint48[${string}]`]: undefined;
|
|
9137
|
+
[x: `uint56[${string}]`]: undefined;
|
|
9138
|
+
[x: `uint64[${string}]`]: undefined;
|
|
9139
|
+
[x: `uint72[${string}]`]: undefined;
|
|
9140
|
+
[x: `uint80[${string}]`]: undefined;
|
|
9141
|
+
[x: `uint88[${string}]`]: undefined;
|
|
9142
|
+
[x: `uint96[${string}]`]: undefined;
|
|
9143
|
+
[x: `uint104[${string}]`]: undefined;
|
|
9144
|
+
[x: `uint112[${string}]`]: undefined;
|
|
9145
|
+
[x: `uint120[${string}]`]: undefined;
|
|
9146
|
+
[x: `uint128[${string}]`]: undefined;
|
|
9147
|
+
[x: `uint136[${string}]`]: undefined;
|
|
9148
|
+
[x: `uint144[${string}]`]: undefined;
|
|
9149
|
+
[x: `uint152[${string}]`]: undefined;
|
|
9150
|
+
[x: `uint160[${string}]`]: undefined;
|
|
9151
|
+
[x: `uint168[${string}]`]: undefined;
|
|
9152
|
+
[x: `uint176[${string}]`]: undefined;
|
|
9153
|
+
[x: `uint184[${string}]`]: undefined;
|
|
9154
|
+
[x: `uint192[${string}]`]: undefined;
|
|
9155
|
+
[x: `uint200[${string}]`]: undefined;
|
|
9156
|
+
[x: `uint208[${string}]`]: undefined;
|
|
9157
|
+
[x: `uint216[${string}]`]: undefined;
|
|
9158
|
+
[x: `uint224[${string}]`]: undefined;
|
|
9159
|
+
[x: `uint232[${string}]`]: undefined;
|
|
9160
|
+
[x: `uint240[${string}]`]: undefined;
|
|
9161
|
+
[x: `uint248[${string}]`]: undefined;
|
|
9162
|
+
[x: `uint256[${string}]`]: undefined;
|
|
9163
|
+
string?: undefined;
|
|
9164
|
+
address?: undefined;
|
|
9165
|
+
bool?: undefined;
|
|
9166
|
+
bytes?: undefined;
|
|
9167
|
+
bytes20?: undefined;
|
|
9168
|
+
bytes1?: undefined;
|
|
9169
|
+
bytes2?: undefined;
|
|
9170
|
+
bytes3?: undefined;
|
|
9171
|
+
bytes4?: undefined;
|
|
9172
|
+
bytes5?: undefined;
|
|
9173
|
+
bytes6?: undefined;
|
|
9174
|
+
bytes7?: undefined;
|
|
9175
|
+
bytes8?: undefined;
|
|
9176
|
+
bytes9?: undefined;
|
|
9177
|
+
bytes10?: undefined;
|
|
9178
|
+
bytes11?: undefined;
|
|
9179
|
+
bytes12?: undefined;
|
|
9180
|
+
bytes13?: undefined;
|
|
9181
|
+
bytes14?: undefined;
|
|
9182
|
+
bytes15?: undefined;
|
|
9183
|
+
bytes16?: undefined;
|
|
9184
|
+
bytes17?: undefined;
|
|
9185
|
+
bytes18?: undefined;
|
|
9186
|
+
bytes19?: undefined;
|
|
9187
|
+
bytes21?: undefined;
|
|
9188
|
+
bytes22?: undefined;
|
|
9189
|
+
bytes23?: undefined;
|
|
9190
|
+
bytes24?: undefined;
|
|
9191
|
+
bytes25?: undefined;
|
|
9192
|
+
bytes26?: undefined;
|
|
9193
|
+
bytes27?: undefined;
|
|
9194
|
+
bytes28?: undefined;
|
|
9195
|
+
bytes29?: undefined;
|
|
9196
|
+
bytes30?: undefined;
|
|
9197
|
+
bytes31?: undefined;
|
|
9198
|
+
bytes32?: undefined;
|
|
9199
|
+
int8?: undefined;
|
|
9200
|
+
int16?: undefined;
|
|
9201
|
+
int24?: undefined;
|
|
9202
|
+
int32?: undefined;
|
|
9203
|
+
int40?: undefined;
|
|
9204
|
+
int48?: undefined;
|
|
9205
|
+
int56?: undefined;
|
|
9206
|
+
int64?: undefined;
|
|
9207
|
+
int72?: undefined;
|
|
9208
|
+
int80?: undefined;
|
|
9209
|
+
int88?: undefined;
|
|
9210
|
+
int96?: undefined;
|
|
9211
|
+
int104?: undefined;
|
|
9212
|
+
int112?: undefined;
|
|
9213
|
+
int120?: undefined;
|
|
9214
|
+
int128?: undefined;
|
|
9215
|
+
int136?: undefined;
|
|
9216
|
+
int144?: undefined;
|
|
9217
|
+
int152?: undefined;
|
|
9218
|
+
int160?: undefined;
|
|
9219
|
+
int168?: undefined;
|
|
9220
|
+
int176?: undefined;
|
|
9221
|
+
int184?: undefined;
|
|
9222
|
+
int192?: undefined;
|
|
9223
|
+
int200?: undefined;
|
|
9224
|
+
int208?: undefined;
|
|
9225
|
+
int216?: undefined;
|
|
9226
|
+
int224?: undefined;
|
|
9227
|
+
int232?: undefined;
|
|
9228
|
+
int240?: undefined;
|
|
9229
|
+
int248?: undefined;
|
|
9230
|
+
int256?: undefined;
|
|
9231
|
+
uint8?: undefined;
|
|
9232
|
+
uint16?: undefined;
|
|
9233
|
+
uint24?: undefined;
|
|
9234
|
+
uint32?: undefined;
|
|
9235
|
+
uint40?: undefined;
|
|
9236
|
+
uint48?: undefined;
|
|
9237
|
+
uint56?: undefined;
|
|
9238
|
+
uint64?: undefined;
|
|
9239
|
+
uint72?: undefined;
|
|
9240
|
+
uint80?: undefined;
|
|
9241
|
+
uint88?: undefined;
|
|
9242
|
+
uint96?: undefined;
|
|
9243
|
+
uint104?: undefined;
|
|
9244
|
+
uint112?: undefined;
|
|
9245
|
+
uint120?: undefined;
|
|
9246
|
+
uint128?: undefined;
|
|
9247
|
+
uint136?: undefined;
|
|
9248
|
+
uint144?: undefined;
|
|
9249
|
+
uint152?: undefined;
|
|
9250
|
+
uint160?: undefined;
|
|
9251
|
+
uint168?: undefined;
|
|
9252
|
+
uint176?: undefined;
|
|
9253
|
+
uint184?: undefined;
|
|
9254
|
+
uint192?: undefined;
|
|
9255
|
+
uint200?: undefined;
|
|
9256
|
+
uint208?: undefined;
|
|
9257
|
+
uint216?: undefined;
|
|
9258
|
+
uint224?: undefined;
|
|
9259
|
+
uint232?: undefined;
|
|
9260
|
+
uint240?: undefined;
|
|
9261
|
+
uint248?: undefined;
|
|
9262
|
+
uint256?: undefined;
|
|
9263
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
9264
|
+
publicKey: `0x${string}`;
|
|
9265
|
+
source: string;
|
|
9266
|
+
type: "local";
|
|
9267
|
+
}>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").CustomTransport, import("viem").Chain, {
|
|
6136
9268
|
address: `0x${string}`;
|
|
6137
9269
|
type: "json-rpc";
|
|
6138
|
-
|
|
9270
|
+
experimental_signAuthMessage?: undefined;
|
|
9271
|
+
signMessage?: undefined;
|
|
9272
|
+
signTransaction?: undefined;
|
|
9273
|
+
signTypedData?: undefined;
|
|
9274
|
+
publicKey?: undefined;
|
|
9275
|
+
source?: undefined;
|
|
9276
|
+
} | {
|
|
9277
|
+
address: `0x${string}`;
|
|
9278
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
9279
|
+
signMessage: ({ message }: {
|
|
9280
|
+
message: import("viem").SignableMessage;
|
|
9281
|
+
}) => Promise<`0x${string}`>;
|
|
9282
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
9283
|
+
serializer?: serializer | undefined;
|
|
9284
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
9285
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
9286
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
9287
|
+
[x: `string[${string}]`]: undefined;
|
|
9288
|
+
[x: `function[${string}]`]: undefined;
|
|
9289
|
+
[x: `address[${string}]`]: undefined;
|
|
9290
|
+
[x: `bool[${string}]`]: undefined;
|
|
9291
|
+
[x: `bytes[${string}]`]: undefined;
|
|
9292
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
9293
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
9294
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
9295
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
9296
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
9297
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
9298
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
9299
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
9300
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
9301
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
9302
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
9303
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
9304
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
9305
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
9306
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
9307
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
9308
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
9309
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
9310
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
9311
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
9312
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
9313
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
9314
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
9315
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
9316
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
9317
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
9318
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
9319
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
9320
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
9321
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
9322
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
9323
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
9324
|
+
[x: `int[${string}]`]: undefined;
|
|
9325
|
+
[x: `int8[${string}]`]: undefined;
|
|
9326
|
+
[x: `int16[${string}]`]: undefined;
|
|
9327
|
+
[x: `int24[${string}]`]: undefined;
|
|
9328
|
+
[x: `int32[${string}]`]: undefined;
|
|
9329
|
+
[x: `int40[${string}]`]: undefined;
|
|
9330
|
+
[x: `int48[${string}]`]: undefined;
|
|
9331
|
+
[x: `int56[${string}]`]: undefined;
|
|
9332
|
+
[x: `int64[${string}]`]: undefined;
|
|
9333
|
+
[x: `int72[${string}]`]: undefined;
|
|
9334
|
+
[x: `int80[${string}]`]: undefined;
|
|
9335
|
+
[x: `int88[${string}]`]: undefined;
|
|
9336
|
+
[x: `int96[${string}]`]: undefined;
|
|
9337
|
+
[x: `int104[${string}]`]: undefined;
|
|
9338
|
+
[x: `int112[${string}]`]: undefined;
|
|
9339
|
+
[x: `int120[${string}]`]: undefined;
|
|
9340
|
+
[x: `int128[${string}]`]: undefined;
|
|
9341
|
+
[x: `int136[${string}]`]: undefined;
|
|
9342
|
+
[x: `int144[${string}]`]: undefined;
|
|
9343
|
+
[x: `int152[${string}]`]: undefined;
|
|
9344
|
+
[x: `int160[${string}]`]: undefined;
|
|
9345
|
+
[x: `int168[${string}]`]: undefined;
|
|
9346
|
+
[x: `int176[${string}]`]: undefined;
|
|
9347
|
+
[x: `int184[${string}]`]: undefined;
|
|
9348
|
+
[x: `int192[${string}]`]: undefined;
|
|
9349
|
+
[x: `int200[${string}]`]: undefined;
|
|
9350
|
+
[x: `int208[${string}]`]: undefined;
|
|
9351
|
+
[x: `int216[${string}]`]: undefined;
|
|
9352
|
+
[x: `int224[${string}]`]: undefined;
|
|
9353
|
+
[x: `int232[${string}]`]: undefined;
|
|
9354
|
+
[x: `int240[${string}]`]: undefined;
|
|
9355
|
+
[x: `int248[${string}]`]: undefined;
|
|
9356
|
+
[x: `int256[${string}]`]: undefined;
|
|
9357
|
+
[x: `uint[${string}]`]: undefined;
|
|
9358
|
+
[x: `uint8[${string}]`]: undefined;
|
|
9359
|
+
[x: `uint16[${string}]`]: undefined;
|
|
9360
|
+
[x: `uint24[${string}]`]: undefined;
|
|
9361
|
+
[x: `uint32[${string}]`]: undefined;
|
|
9362
|
+
[x: `uint40[${string}]`]: undefined;
|
|
9363
|
+
[x: `uint48[${string}]`]: undefined;
|
|
9364
|
+
[x: `uint56[${string}]`]: undefined;
|
|
9365
|
+
[x: `uint64[${string}]`]: undefined;
|
|
9366
|
+
[x: `uint72[${string}]`]: undefined;
|
|
9367
|
+
[x: `uint80[${string}]`]: undefined;
|
|
9368
|
+
[x: `uint88[${string}]`]: undefined;
|
|
9369
|
+
[x: `uint96[${string}]`]: undefined;
|
|
9370
|
+
[x: `uint104[${string}]`]: undefined;
|
|
9371
|
+
[x: `uint112[${string}]`]: undefined;
|
|
9372
|
+
[x: `uint120[${string}]`]: undefined;
|
|
9373
|
+
[x: `uint128[${string}]`]: undefined;
|
|
9374
|
+
[x: `uint136[${string}]`]: undefined;
|
|
9375
|
+
[x: `uint144[${string}]`]: undefined;
|
|
9376
|
+
[x: `uint152[${string}]`]: undefined;
|
|
9377
|
+
[x: `uint160[${string}]`]: undefined;
|
|
9378
|
+
[x: `uint168[${string}]`]: undefined;
|
|
9379
|
+
[x: `uint176[${string}]`]: undefined;
|
|
9380
|
+
[x: `uint184[${string}]`]: undefined;
|
|
9381
|
+
[x: `uint192[${string}]`]: undefined;
|
|
9382
|
+
[x: `uint200[${string}]`]: undefined;
|
|
9383
|
+
[x: `uint208[${string}]`]: undefined;
|
|
9384
|
+
[x: `uint216[${string}]`]: undefined;
|
|
9385
|
+
[x: `uint224[${string}]`]: undefined;
|
|
9386
|
+
[x: `uint232[${string}]`]: undefined;
|
|
9387
|
+
[x: `uint240[${string}]`]: undefined;
|
|
9388
|
+
[x: `uint248[${string}]`]: undefined;
|
|
9389
|
+
[x: `uint256[${string}]`]: undefined;
|
|
9390
|
+
string?: undefined;
|
|
9391
|
+
address?: undefined;
|
|
9392
|
+
bool?: undefined;
|
|
9393
|
+
bytes?: undefined;
|
|
9394
|
+
bytes20?: undefined;
|
|
9395
|
+
bytes1?: undefined;
|
|
9396
|
+
bytes2?: undefined;
|
|
9397
|
+
bytes3?: undefined;
|
|
9398
|
+
bytes4?: undefined;
|
|
9399
|
+
bytes5?: undefined;
|
|
9400
|
+
bytes6?: undefined;
|
|
9401
|
+
bytes7?: undefined;
|
|
9402
|
+
bytes8?: undefined;
|
|
9403
|
+
bytes9?: undefined;
|
|
9404
|
+
bytes10?: undefined;
|
|
9405
|
+
bytes11?: undefined;
|
|
9406
|
+
bytes12?: undefined;
|
|
9407
|
+
bytes13?: undefined;
|
|
9408
|
+
bytes14?: undefined;
|
|
9409
|
+
bytes15?: undefined;
|
|
9410
|
+
bytes16?: undefined;
|
|
9411
|
+
bytes17?: undefined;
|
|
9412
|
+
bytes18?: undefined;
|
|
9413
|
+
bytes19?: undefined;
|
|
9414
|
+
bytes21?: undefined;
|
|
9415
|
+
bytes22?: undefined;
|
|
9416
|
+
bytes23?: undefined;
|
|
9417
|
+
bytes24?: undefined;
|
|
9418
|
+
bytes25?: undefined;
|
|
9419
|
+
bytes26?: undefined;
|
|
9420
|
+
bytes27?: undefined;
|
|
9421
|
+
bytes28?: undefined;
|
|
9422
|
+
bytes29?: undefined;
|
|
9423
|
+
bytes30?: undefined;
|
|
9424
|
+
bytes31?: undefined;
|
|
9425
|
+
bytes32?: undefined;
|
|
9426
|
+
int8?: undefined;
|
|
9427
|
+
int16?: undefined;
|
|
9428
|
+
int24?: undefined;
|
|
9429
|
+
int32?: undefined;
|
|
9430
|
+
int40?: undefined;
|
|
9431
|
+
int48?: undefined;
|
|
9432
|
+
int56?: undefined;
|
|
9433
|
+
int64?: undefined;
|
|
9434
|
+
int72?: undefined;
|
|
9435
|
+
int80?: undefined;
|
|
9436
|
+
int88?: undefined;
|
|
9437
|
+
int96?: undefined;
|
|
9438
|
+
int104?: undefined;
|
|
9439
|
+
int112?: undefined;
|
|
9440
|
+
int120?: undefined;
|
|
9441
|
+
int128?: undefined;
|
|
9442
|
+
int136?: undefined;
|
|
9443
|
+
int144?: undefined;
|
|
9444
|
+
int152?: undefined;
|
|
9445
|
+
int160?: undefined;
|
|
9446
|
+
int168?: undefined;
|
|
9447
|
+
int176?: undefined;
|
|
9448
|
+
int184?: undefined;
|
|
9449
|
+
int192?: undefined;
|
|
9450
|
+
int200?: undefined;
|
|
9451
|
+
int208?: undefined;
|
|
9452
|
+
int216?: undefined;
|
|
9453
|
+
int224?: undefined;
|
|
9454
|
+
int232?: undefined;
|
|
9455
|
+
int240?: undefined;
|
|
9456
|
+
int248?: undefined;
|
|
9457
|
+
int256?: undefined;
|
|
9458
|
+
uint8?: undefined;
|
|
9459
|
+
uint16?: undefined;
|
|
9460
|
+
uint24?: undefined;
|
|
9461
|
+
uint32?: undefined;
|
|
9462
|
+
uint40?: undefined;
|
|
9463
|
+
uint48?: undefined;
|
|
9464
|
+
uint56?: undefined;
|
|
9465
|
+
uint64?: undefined;
|
|
9466
|
+
uint72?: undefined;
|
|
9467
|
+
uint80?: undefined;
|
|
9468
|
+
uint88?: undefined;
|
|
9469
|
+
uint96?: undefined;
|
|
9470
|
+
uint104?: undefined;
|
|
9471
|
+
uint112?: undefined;
|
|
9472
|
+
uint120?: undefined;
|
|
9473
|
+
uint128?: undefined;
|
|
9474
|
+
uint136?: undefined;
|
|
9475
|
+
uint144?: undefined;
|
|
9476
|
+
uint152?: undefined;
|
|
9477
|
+
uint160?: undefined;
|
|
9478
|
+
uint168?: undefined;
|
|
9479
|
+
uint176?: undefined;
|
|
9480
|
+
uint184?: undefined;
|
|
9481
|
+
uint192?: undefined;
|
|
9482
|
+
uint200?: undefined;
|
|
9483
|
+
uint208?: undefined;
|
|
9484
|
+
uint216?: undefined;
|
|
9485
|
+
uint224?: undefined;
|
|
9486
|
+
uint232?: undefined;
|
|
9487
|
+
uint240?: undefined;
|
|
9488
|
+
uint248?: undefined;
|
|
9489
|
+
uint256?: undefined;
|
|
9490
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
9491
|
+
publicKey: `0x${string}`;
|
|
9492
|
+
source: string;
|
|
9493
|
+
type: "local";
|
|
9494
|
+
}, import("viem").WalletRpcSchema, import("viem").WalletActions<import("viem").Chain, {
|
|
6139
9495
|
address: `0x${string}`;
|
|
6140
9496
|
type: "json-rpc";
|
|
6141
|
-
|
|
9497
|
+
experimental_signAuthMessage?: undefined;
|
|
9498
|
+
signMessage?: undefined;
|
|
9499
|
+
signTransaction?: undefined;
|
|
9500
|
+
signTypedData?: undefined;
|
|
9501
|
+
publicKey?: undefined;
|
|
9502
|
+
source?: undefined;
|
|
9503
|
+
} | {
|
|
9504
|
+
address: `0x${string}`;
|
|
9505
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
9506
|
+
signMessage: ({ message }: {
|
|
9507
|
+
message: import("viem").SignableMessage;
|
|
9508
|
+
}) => Promise<`0x${string}`>;
|
|
9509
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
9510
|
+
serializer?: serializer | undefined;
|
|
9511
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
9512
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
9513
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
9514
|
+
[x: `string[${string}]`]: undefined;
|
|
9515
|
+
[x: `function[${string}]`]: undefined;
|
|
9516
|
+
[x: `address[${string}]`]: undefined;
|
|
9517
|
+
[x: `bool[${string}]`]: undefined;
|
|
9518
|
+
[x: `bytes[${string}]`]: undefined;
|
|
9519
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
9520
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
9521
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
9522
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
9523
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
9524
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
9525
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
9526
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
9527
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
9528
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
9529
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
9530
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
9531
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
9532
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
9533
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
9534
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
9535
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
9536
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
9537
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
9538
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
9539
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
9540
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
9541
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
9542
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
9543
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
9544
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
9545
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
9546
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
9547
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
9548
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
9549
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
9550
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
9551
|
+
[x: `int[${string}]`]: undefined;
|
|
9552
|
+
[x: `int8[${string}]`]: undefined;
|
|
9553
|
+
[x: `int16[${string}]`]: undefined;
|
|
9554
|
+
[x: `int24[${string}]`]: undefined;
|
|
9555
|
+
[x: `int32[${string}]`]: undefined;
|
|
9556
|
+
[x: `int40[${string}]`]: undefined;
|
|
9557
|
+
[x: `int48[${string}]`]: undefined;
|
|
9558
|
+
[x: `int56[${string}]`]: undefined;
|
|
9559
|
+
[x: `int64[${string}]`]: undefined;
|
|
9560
|
+
[x: `int72[${string}]`]: undefined;
|
|
9561
|
+
[x: `int80[${string}]`]: undefined;
|
|
9562
|
+
[x: `int88[${string}]`]: undefined;
|
|
9563
|
+
[x: `int96[${string}]`]: undefined;
|
|
9564
|
+
[x: `int104[${string}]`]: undefined;
|
|
9565
|
+
[x: `int112[${string}]`]: undefined;
|
|
9566
|
+
[x: `int120[${string}]`]: undefined;
|
|
9567
|
+
[x: `int128[${string}]`]: undefined;
|
|
9568
|
+
[x: `int136[${string}]`]: undefined;
|
|
9569
|
+
[x: `int144[${string}]`]: undefined;
|
|
9570
|
+
[x: `int152[${string}]`]: undefined;
|
|
9571
|
+
[x: `int160[${string}]`]: undefined;
|
|
9572
|
+
[x: `int168[${string}]`]: undefined;
|
|
9573
|
+
[x: `int176[${string}]`]: undefined;
|
|
9574
|
+
[x: `int184[${string}]`]: undefined;
|
|
9575
|
+
[x: `int192[${string}]`]: undefined;
|
|
9576
|
+
[x: `int200[${string}]`]: undefined;
|
|
9577
|
+
[x: `int208[${string}]`]: undefined;
|
|
9578
|
+
[x: `int216[${string}]`]: undefined;
|
|
9579
|
+
[x: `int224[${string}]`]: undefined;
|
|
9580
|
+
[x: `int232[${string}]`]: undefined;
|
|
9581
|
+
[x: `int240[${string}]`]: undefined;
|
|
9582
|
+
[x: `int248[${string}]`]: undefined;
|
|
9583
|
+
[x: `int256[${string}]`]: undefined;
|
|
9584
|
+
[x: `uint[${string}]`]: undefined;
|
|
9585
|
+
[x: `uint8[${string}]`]: undefined;
|
|
9586
|
+
[x: `uint16[${string}]`]: undefined;
|
|
9587
|
+
[x: `uint24[${string}]`]: undefined;
|
|
9588
|
+
[x: `uint32[${string}]`]: undefined;
|
|
9589
|
+
[x: `uint40[${string}]`]: undefined;
|
|
9590
|
+
[x: `uint48[${string}]`]: undefined;
|
|
9591
|
+
[x: `uint56[${string}]`]: undefined;
|
|
9592
|
+
[x: `uint64[${string}]`]: undefined;
|
|
9593
|
+
[x: `uint72[${string}]`]: undefined;
|
|
9594
|
+
[x: `uint80[${string}]`]: undefined;
|
|
9595
|
+
[x: `uint88[${string}]`]: undefined;
|
|
9596
|
+
[x: `uint96[${string}]`]: undefined;
|
|
9597
|
+
[x: `uint104[${string}]`]: undefined;
|
|
9598
|
+
[x: `uint112[${string}]`]: undefined;
|
|
9599
|
+
[x: `uint120[${string}]`]: undefined;
|
|
9600
|
+
[x: `uint128[${string}]`]: undefined;
|
|
9601
|
+
[x: `uint136[${string}]`]: undefined;
|
|
9602
|
+
[x: `uint144[${string}]`]: undefined;
|
|
9603
|
+
[x: `uint152[${string}]`]: undefined;
|
|
9604
|
+
[x: `uint160[${string}]`]: undefined;
|
|
9605
|
+
[x: `uint168[${string}]`]: undefined;
|
|
9606
|
+
[x: `uint176[${string}]`]: undefined;
|
|
9607
|
+
[x: `uint184[${string}]`]: undefined;
|
|
9608
|
+
[x: `uint192[${string}]`]: undefined;
|
|
9609
|
+
[x: `uint200[${string}]`]: undefined;
|
|
9610
|
+
[x: `uint208[${string}]`]: undefined;
|
|
9611
|
+
[x: `uint216[${string}]`]: undefined;
|
|
9612
|
+
[x: `uint224[${string}]`]: undefined;
|
|
9613
|
+
[x: `uint232[${string}]`]: undefined;
|
|
9614
|
+
[x: `uint240[${string}]`]: undefined;
|
|
9615
|
+
[x: `uint248[${string}]`]: undefined;
|
|
9616
|
+
[x: `uint256[${string}]`]: undefined;
|
|
9617
|
+
string?: undefined;
|
|
9618
|
+
address?: undefined;
|
|
9619
|
+
bool?: undefined;
|
|
9620
|
+
bytes?: undefined;
|
|
9621
|
+
bytes20?: undefined;
|
|
9622
|
+
bytes1?: undefined;
|
|
9623
|
+
bytes2?: undefined;
|
|
9624
|
+
bytes3?: undefined;
|
|
9625
|
+
bytes4?: undefined;
|
|
9626
|
+
bytes5?: undefined;
|
|
9627
|
+
bytes6?: undefined;
|
|
9628
|
+
bytes7?: undefined;
|
|
9629
|
+
bytes8?: undefined;
|
|
9630
|
+
bytes9?: undefined;
|
|
9631
|
+
bytes10?: undefined;
|
|
9632
|
+
bytes11?: undefined;
|
|
9633
|
+
bytes12?: undefined;
|
|
9634
|
+
bytes13?: undefined;
|
|
9635
|
+
bytes14?: undefined;
|
|
9636
|
+
bytes15?: undefined;
|
|
9637
|
+
bytes16?: undefined;
|
|
9638
|
+
bytes17?: undefined;
|
|
9639
|
+
bytes18?: undefined;
|
|
9640
|
+
bytes19?: undefined;
|
|
9641
|
+
bytes21?: undefined;
|
|
9642
|
+
bytes22?: undefined;
|
|
9643
|
+
bytes23?: undefined;
|
|
9644
|
+
bytes24?: undefined;
|
|
9645
|
+
bytes25?: undefined;
|
|
9646
|
+
bytes26?: undefined;
|
|
9647
|
+
bytes27?: undefined;
|
|
9648
|
+
bytes28?: undefined;
|
|
9649
|
+
bytes29?: undefined;
|
|
9650
|
+
bytes30?: undefined;
|
|
9651
|
+
bytes31?: undefined;
|
|
9652
|
+
bytes32?: undefined;
|
|
9653
|
+
int8?: undefined;
|
|
9654
|
+
int16?: undefined;
|
|
9655
|
+
int24?: undefined;
|
|
9656
|
+
int32?: undefined;
|
|
9657
|
+
int40?: undefined;
|
|
9658
|
+
int48?: undefined;
|
|
9659
|
+
int56?: undefined;
|
|
9660
|
+
int64?: undefined;
|
|
9661
|
+
int72?: undefined;
|
|
9662
|
+
int80?: undefined;
|
|
9663
|
+
int88?: undefined;
|
|
9664
|
+
int96?: undefined;
|
|
9665
|
+
int104?: undefined;
|
|
9666
|
+
int112?: undefined;
|
|
9667
|
+
int120?: undefined;
|
|
9668
|
+
int128?: undefined;
|
|
9669
|
+
int136?: undefined;
|
|
9670
|
+
int144?: undefined;
|
|
9671
|
+
int152?: undefined;
|
|
9672
|
+
int160?: undefined;
|
|
9673
|
+
int168?: undefined;
|
|
9674
|
+
int176?: undefined;
|
|
9675
|
+
int184?: undefined;
|
|
9676
|
+
int192?: undefined;
|
|
9677
|
+
int200?: undefined;
|
|
9678
|
+
int208?: undefined;
|
|
9679
|
+
int216?: undefined;
|
|
9680
|
+
int224?: undefined;
|
|
9681
|
+
int232?: undefined;
|
|
9682
|
+
int240?: undefined;
|
|
9683
|
+
int248?: undefined;
|
|
9684
|
+
int256?: undefined;
|
|
9685
|
+
uint8?: undefined;
|
|
9686
|
+
uint16?: undefined;
|
|
9687
|
+
uint24?: undefined;
|
|
9688
|
+
uint32?: undefined;
|
|
9689
|
+
uint40?: undefined;
|
|
9690
|
+
uint48?: undefined;
|
|
9691
|
+
uint56?: undefined;
|
|
9692
|
+
uint64?: undefined;
|
|
9693
|
+
uint72?: undefined;
|
|
9694
|
+
uint80?: undefined;
|
|
9695
|
+
uint88?: undefined;
|
|
9696
|
+
uint96?: undefined;
|
|
9697
|
+
uint104?: undefined;
|
|
9698
|
+
uint112?: undefined;
|
|
9699
|
+
uint120?: undefined;
|
|
9700
|
+
uint128?: undefined;
|
|
9701
|
+
uint136?: undefined;
|
|
9702
|
+
uint144?: undefined;
|
|
9703
|
+
uint152?: undefined;
|
|
9704
|
+
uint160?: undefined;
|
|
9705
|
+
uint168?: undefined;
|
|
9706
|
+
uint176?: undefined;
|
|
9707
|
+
uint184?: undefined;
|
|
9708
|
+
uint192?: undefined;
|
|
9709
|
+
uint200?: undefined;
|
|
9710
|
+
uint208?: undefined;
|
|
9711
|
+
uint216?: undefined;
|
|
9712
|
+
uint224?: undefined;
|
|
9713
|
+
uint232?: undefined;
|
|
9714
|
+
uint240?: undefined;
|
|
9715
|
+
uint248?: undefined;
|
|
9716
|
+
uint256?: undefined;
|
|
9717
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
9718
|
+
publicKey: `0x${string}`;
|
|
9719
|
+
source: string;
|
|
9720
|
+
type: "local";
|
|
9721
|
+
}>>) => client_1) => import("viem").Client<import("viem").CustomTransport, import("viem").Chain, {
|
|
6142
9722
|
address: `0x${string}`;
|
|
6143
9723
|
type: "json-rpc";
|
|
6144
|
-
|
|
9724
|
+
experimental_signAuthMessage?: undefined;
|
|
9725
|
+
signMessage?: undefined;
|
|
9726
|
+
signTransaction?: undefined;
|
|
9727
|
+
signTypedData?: undefined;
|
|
9728
|
+
publicKey?: undefined;
|
|
9729
|
+
source?: undefined;
|
|
9730
|
+
} | {
|
|
9731
|
+
address: `0x${string}`;
|
|
9732
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
9733
|
+
signMessage: ({ message }: {
|
|
9734
|
+
message: import("viem").SignableMessage;
|
|
9735
|
+
}) => Promise<`0x${string}`>;
|
|
9736
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
9737
|
+
serializer?: serializer | undefined;
|
|
9738
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
9739
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
9740
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
9741
|
+
[x: `string[${string}]`]: undefined;
|
|
9742
|
+
[x: `function[${string}]`]: undefined;
|
|
9743
|
+
[x: `address[${string}]`]: undefined;
|
|
9744
|
+
[x: `bool[${string}]`]: undefined;
|
|
9745
|
+
[x: `bytes[${string}]`]: undefined;
|
|
9746
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
9747
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
9748
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
9749
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
9750
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
9751
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
9752
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
9753
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
9754
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
9755
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
9756
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
9757
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
9758
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
9759
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
9760
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
9761
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
9762
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
9763
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
9764
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
9765
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
9766
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
9767
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
9768
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
9769
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
9770
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
9771
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
9772
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
9773
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
9774
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
9775
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
9776
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
9777
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
9778
|
+
[x: `int[${string}]`]: undefined;
|
|
9779
|
+
[x: `int8[${string}]`]: undefined;
|
|
9780
|
+
[x: `int16[${string}]`]: undefined;
|
|
9781
|
+
[x: `int24[${string}]`]: undefined;
|
|
9782
|
+
[x: `int32[${string}]`]: undefined;
|
|
9783
|
+
[x: `int40[${string}]`]: undefined;
|
|
9784
|
+
[x: `int48[${string}]`]: undefined;
|
|
9785
|
+
[x: `int56[${string}]`]: undefined;
|
|
9786
|
+
[x: `int64[${string}]`]: undefined;
|
|
9787
|
+
[x: `int72[${string}]`]: undefined;
|
|
9788
|
+
[x: `int80[${string}]`]: undefined;
|
|
9789
|
+
[x: `int88[${string}]`]: undefined;
|
|
9790
|
+
[x: `int96[${string}]`]: undefined;
|
|
9791
|
+
[x: `int104[${string}]`]: undefined;
|
|
9792
|
+
[x: `int112[${string}]`]: undefined;
|
|
9793
|
+
[x: `int120[${string}]`]: undefined;
|
|
9794
|
+
[x: `int128[${string}]`]: undefined;
|
|
9795
|
+
[x: `int136[${string}]`]: undefined;
|
|
9796
|
+
[x: `int144[${string}]`]: undefined;
|
|
9797
|
+
[x: `int152[${string}]`]: undefined;
|
|
9798
|
+
[x: `int160[${string}]`]: undefined;
|
|
9799
|
+
[x: `int168[${string}]`]: undefined;
|
|
9800
|
+
[x: `int176[${string}]`]: undefined;
|
|
9801
|
+
[x: `int184[${string}]`]: undefined;
|
|
9802
|
+
[x: `int192[${string}]`]: undefined;
|
|
9803
|
+
[x: `int200[${string}]`]: undefined;
|
|
9804
|
+
[x: `int208[${string}]`]: undefined;
|
|
9805
|
+
[x: `int216[${string}]`]: undefined;
|
|
9806
|
+
[x: `int224[${string}]`]: undefined;
|
|
9807
|
+
[x: `int232[${string}]`]: undefined;
|
|
9808
|
+
[x: `int240[${string}]`]: undefined;
|
|
9809
|
+
[x: `int248[${string}]`]: undefined;
|
|
9810
|
+
[x: `int256[${string}]`]: undefined;
|
|
9811
|
+
[x: `uint[${string}]`]: undefined;
|
|
9812
|
+
[x: `uint8[${string}]`]: undefined;
|
|
9813
|
+
[x: `uint16[${string}]`]: undefined;
|
|
9814
|
+
[x: `uint24[${string}]`]: undefined;
|
|
9815
|
+
[x: `uint32[${string}]`]: undefined;
|
|
9816
|
+
[x: `uint40[${string}]`]: undefined;
|
|
9817
|
+
[x: `uint48[${string}]`]: undefined;
|
|
9818
|
+
[x: `uint56[${string}]`]: undefined;
|
|
9819
|
+
[x: `uint64[${string}]`]: undefined;
|
|
9820
|
+
[x: `uint72[${string}]`]: undefined;
|
|
9821
|
+
[x: `uint80[${string}]`]: undefined;
|
|
9822
|
+
[x: `uint88[${string}]`]: undefined;
|
|
9823
|
+
[x: `uint96[${string}]`]: undefined;
|
|
9824
|
+
[x: `uint104[${string}]`]: undefined;
|
|
9825
|
+
[x: `uint112[${string}]`]: undefined;
|
|
9826
|
+
[x: `uint120[${string}]`]: undefined;
|
|
9827
|
+
[x: `uint128[${string}]`]: undefined;
|
|
9828
|
+
[x: `uint136[${string}]`]: undefined;
|
|
9829
|
+
[x: `uint144[${string}]`]: undefined;
|
|
9830
|
+
[x: `uint152[${string}]`]: undefined;
|
|
9831
|
+
[x: `uint160[${string}]`]: undefined;
|
|
9832
|
+
[x: `uint168[${string}]`]: undefined;
|
|
9833
|
+
[x: `uint176[${string}]`]: undefined;
|
|
9834
|
+
[x: `uint184[${string}]`]: undefined;
|
|
9835
|
+
[x: `uint192[${string}]`]: undefined;
|
|
9836
|
+
[x: `uint200[${string}]`]: undefined;
|
|
9837
|
+
[x: `uint208[${string}]`]: undefined;
|
|
9838
|
+
[x: `uint216[${string}]`]: undefined;
|
|
9839
|
+
[x: `uint224[${string}]`]: undefined;
|
|
9840
|
+
[x: `uint232[${string}]`]: undefined;
|
|
9841
|
+
[x: `uint240[${string}]`]: undefined;
|
|
9842
|
+
[x: `uint248[${string}]`]: undefined;
|
|
9843
|
+
[x: `uint256[${string}]`]: undefined;
|
|
9844
|
+
string?: undefined;
|
|
9845
|
+
address?: undefined;
|
|
9846
|
+
bool?: undefined;
|
|
9847
|
+
bytes?: undefined;
|
|
9848
|
+
bytes20?: undefined;
|
|
9849
|
+
bytes1?: undefined;
|
|
9850
|
+
bytes2?: undefined;
|
|
9851
|
+
bytes3?: undefined;
|
|
9852
|
+
bytes4?: undefined;
|
|
9853
|
+
bytes5?: undefined;
|
|
9854
|
+
bytes6?: undefined;
|
|
9855
|
+
bytes7?: undefined;
|
|
9856
|
+
bytes8?: undefined;
|
|
9857
|
+
bytes9?: undefined;
|
|
9858
|
+
bytes10?: undefined;
|
|
9859
|
+
bytes11?: undefined;
|
|
9860
|
+
bytes12?: undefined;
|
|
9861
|
+
bytes13?: undefined;
|
|
9862
|
+
bytes14?: undefined;
|
|
9863
|
+
bytes15?: undefined;
|
|
9864
|
+
bytes16?: undefined;
|
|
9865
|
+
bytes17?: undefined;
|
|
9866
|
+
bytes18?: undefined;
|
|
9867
|
+
bytes19?: undefined;
|
|
9868
|
+
bytes21?: undefined;
|
|
9869
|
+
bytes22?: undefined;
|
|
9870
|
+
bytes23?: undefined;
|
|
9871
|
+
bytes24?: undefined;
|
|
9872
|
+
bytes25?: undefined;
|
|
9873
|
+
bytes26?: undefined;
|
|
9874
|
+
bytes27?: undefined;
|
|
9875
|
+
bytes28?: undefined;
|
|
9876
|
+
bytes29?: undefined;
|
|
9877
|
+
bytes30?: undefined;
|
|
9878
|
+
bytes31?: undefined;
|
|
9879
|
+
bytes32?: undefined;
|
|
9880
|
+
int8?: undefined;
|
|
9881
|
+
int16?: undefined;
|
|
9882
|
+
int24?: undefined;
|
|
9883
|
+
int32?: undefined;
|
|
9884
|
+
int40?: undefined;
|
|
9885
|
+
int48?: undefined;
|
|
9886
|
+
int56?: undefined;
|
|
9887
|
+
int64?: undefined;
|
|
9888
|
+
int72?: undefined;
|
|
9889
|
+
int80?: undefined;
|
|
9890
|
+
int88?: undefined;
|
|
9891
|
+
int96?: undefined;
|
|
9892
|
+
int104?: undefined;
|
|
9893
|
+
int112?: undefined;
|
|
9894
|
+
int120?: undefined;
|
|
9895
|
+
int128?: undefined;
|
|
9896
|
+
int136?: undefined;
|
|
9897
|
+
int144?: undefined;
|
|
9898
|
+
int152?: undefined;
|
|
9899
|
+
int160?: undefined;
|
|
9900
|
+
int168?: undefined;
|
|
9901
|
+
int176?: undefined;
|
|
9902
|
+
int184?: undefined;
|
|
9903
|
+
int192?: undefined;
|
|
9904
|
+
int200?: undefined;
|
|
9905
|
+
int208?: undefined;
|
|
9906
|
+
int216?: undefined;
|
|
9907
|
+
int224?: undefined;
|
|
9908
|
+
int232?: undefined;
|
|
9909
|
+
int240?: undefined;
|
|
9910
|
+
int248?: undefined;
|
|
9911
|
+
int256?: undefined;
|
|
9912
|
+
uint8?: undefined;
|
|
9913
|
+
uint16?: undefined;
|
|
9914
|
+
uint24?: undefined;
|
|
9915
|
+
uint32?: undefined;
|
|
9916
|
+
uint40?: undefined;
|
|
9917
|
+
uint48?: undefined;
|
|
9918
|
+
uint56?: undefined;
|
|
9919
|
+
uint64?: undefined;
|
|
9920
|
+
uint72?: undefined;
|
|
9921
|
+
uint80?: undefined;
|
|
9922
|
+
uint88?: undefined;
|
|
9923
|
+
uint96?: undefined;
|
|
9924
|
+
uint104?: undefined;
|
|
9925
|
+
uint112?: undefined;
|
|
9926
|
+
uint120?: undefined;
|
|
9927
|
+
uint128?: undefined;
|
|
9928
|
+
uint136?: undefined;
|
|
9929
|
+
uint144?: undefined;
|
|
9930
|
+
uint152?: undefined;
|
|
9931
|
+
uint160?: undefined;
|
|
9932
|
+
uint168?: undefined;
|
|
9933
|
+
uint176?: undefined;
|
|
9934
|
+
uint184?: undefined;
|
|
9935
|
+
uint192?: undefined;
|
|
9936
|
+
uint200?: undefined;
|
|
9937
|
+
uint208?: undefined;
|
|
9938
|
+
uint216?: undefined;
|
|
9939
|
+
uint224?: undefined;
|
|
9940
|
+
uint232?: undefined;
|
|
9941
|
+
uint240?: undefined;
|
|
9942
|
+
uint248?: undefined;
|
|
9943
|
+
uint256?: undefined;
|
|
9944
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
9945
|
+
publicKey: `0x${string}`;
|
|
9946
|
+
source: string;
|
|
9947
|
+
type: "local";
|
|
9948
|
+
}, import("viem").WalletRpcSchema, { [K_3 in keyof client_1]: client_1[K_3]; } & import("viem").WalletActions<import("viem").Chain, {
|
|
6145
9949
|
address: `0x${string}`;
|
|
6146
9950
|
type: "json-rpc";
|
|
9951
|
+
experimental_signAuthMessage?: undefined;
|
|
9952
|
+
signMessage?: undefined;
|
|
9953
|
+
signTransaction?: undefined;
|
|
9954
|
+
signTypedData?: undefined;
|
|
9955
|
+
publicKey?: undefined;
|
|
9956
|
+
source?: undefined;
|
|
9957
|
+
} | {
|
|
9958
|
+
address: `0x${string}`;
|
|
9959
|
+
experimental_signAuthMessage?: ((parameters: import("node_modules/viem/_types/experimental/eip3074/utils/toAuthMessage").ToAuthMessageParameters) => Promise<`0x${string}`>) | undefined;
|
|
9960
|
+
signMessage: ({ message }: {
|
|
9961
|
+
message: import("viem").SignableMessage;
|
|
9962
|
+
}) => Promise<`0x${string}`>;
|
|
9963
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, args?: {
|
|
9964
|
+
serializer?: serializer | undefined;
|
|
9965
|
+
} | undefined) => Promise<import("node_modules/viem/_types/types/utils").IsNarrowable<import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>>, `0x${string}`> extends true ? import("viem").TransactionSerialized<import("viem").GetTransactionType<transaction>> : `0x${string}`>;
|
|
9966
|
+
signTypedData: <const typedData extends Record<string, unknown> | {
|
|
9967
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
9968
|
+
[x: `string[${string}]`]: undefined;
|
|
9969
|
+
[x: `function[${string}]`]: undefined;
|
|
9970
|
+
[x: `address[${string}]`]: undefined;
|
|
9971
|
+
[x: `bool[${string}]`]: undefined;
|
|
9972
|
+
[x: `bytes[${string}]`]: undefined;
|
|
9973
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
9974
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
9975
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
9976
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
9977
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
9978
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
9979
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
9980
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
9981
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
9982
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
9983
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
9984
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
9985
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
9986
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
9987
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
9988
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
9989
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
9990
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
9991
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
9992
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
9993
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
9994
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
9995
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
9996
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
9997
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
9998
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
9999
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
10000
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
10001
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
10002
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
10003
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
10004
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
10005
|
+
[x: `int[${string}]`]: undefined;
|
|
10006
|
+
[x: `int8[${string}]`]: undefined;
|
|
10007
|
+
[x: `int16[${string}]`]: undefined;
|
|
10008
|
+
[x: `int24[${string}]`]: undefined;
|
|
10009
|
+
[x: `int32[${string}]`]: undefined;
|
|
10010
|
+
[x: `int40[${string}]`]: undefined;
|
|
10011
|
+
[x: `int48[${string}]`]: undefined;
|
|
10012
|
+
[x: `int56[${string}]`]: undefined;
|
|
10013
|
+
[x: `int64[${string}]`]: undefined;
|
|
10014
|
+
[x: `int72[${string}]`]: undefined;
|
|
10015
|
+
[x: `int80[${string}]`]: undefined;
|
|
10016
|
+
[x: `int88[${string}]`]: undefined;
|
|
10017
|
+
[x: `int96[${string}]`]: undefined;
|
|
10018
|
+
[x: `int104[${string}]`]: undefined;
|
|
10019
|
+
[x: `int112[${string}]`]: undefined;
|
|
10020
|
+
[x: `int120[${string}]`]: undefined;
|
|
10021
|
+
[x: `int128[${string}]`]: undefined;
|
|
10022
|
+
[x: `int136[${string}]`]: undefined;
|
|
10023
|
+
[x: `int144[${string}]`]: undefined;
|
|
10024
|
+
[x: `int152[${string}]`]: undefined;
|
|
10025
|
+
[x: `int160[${string}]`]: undefined;
|
|
10026
|
+
[x: `int168[${string}]`]: undefined;
|
|
10027
|
+
[x: `int176[${string}]`]: undefined;
|
|
10028
|
+
[x: `int184[${string}]`]: undefined;
|
|
10029
|
+
[x: `int192[${string}]`]: undefined;
|
|
10030
|
+
[x: `int200[${string}]`]: undefined;
|
|
10031
|
+
[x: `int208[${string}]`]: undefined;
|
|
10032
|
+
[x: `int216[${string}]`]: undefined;
|
|
10033
|
+
[x: `int224[${string}]`]: undefined;
|
|
10034
|
+
[x: `int232[${string}]`]: undefined;
|
|
10035
|
+
[x: `int240[${string}]`]: undefined;
|
|
10036
|
+
[x: `int248[${string}]`]: undefined;
|
|
10037
|
+
[x: `int256[${string}]`]: undefined;
|
|
10038
|
+
[x: `uint[${string}]`]: undefined;
|
|
10039
|
+
[x: `uint8[${string}]`]: undefined;
|
|
10040
|
+
[x: `uint16[${string}]`]: undefined;
|
|
10041
|
+
[x: `uint24[${string}]`]: undefined;
|
|
10042
|
+
[x: `uint32[${string}]`]: undefined;
|
|
10043
|
+
[x: `uint40[${string}]`]: undefined;
|
|
10044
|
+
[x: `uint48[${string}]`]: undefined;
|
|
10045
|
+
[x: `uint56[${string}]`]: undefined;
|
|
10046
|
+
[x: `uint64[${string}]`]: undefined;
|
|
10047
|
+
[x: `uint72[${string}]`]: undefined;
|
|
10048
|
+
[x: `uint80[${string}]`]: undefined;
|
|
10049
|
+
[x: `uint88[${string}]`]: undefined;
|
|
10050
|
+
[x: `uint96[${string}]`]: undefined;
|
|
10051
|
+
[x: `uint104[${string}]`]: undefined;
|
|
10052
|
+
[x: `uint112[${string}]`]: undefined;
|
|
10053
|
+
[x: `uint120[${string}]`]: undefined;
|
|
10054
|
+
[x: `uint128[${string}]`]: undefined;
|
|
10055
|
+
[x: `uint136[${string}]`]: undefined;
|
|
10056
|
+
[x: `uint144[${string}]`]: undefined;
|
|
10057
|
+
[x: `uint152[${string}]`]: undefined;
|
|
10058
|
+
[x: `uint160[${string}]`]: undefined;
|
|
10059
|
+
[x: `uint168[${string}]`]: undefined;
|
|
10060
|
+
[x: `uint176[${string}]`]: undefined;
|
|
10061
|
+
[x: `uint184[${string}]`]: undefined;
|
|
10062
|
+
[x: `uint192[${string}]`]: undefined;
|
|
10063
|
+
[x: `uint200[${string}]`]: undefined;
|
|
10064
|
+
[x: `uint208[${string}]`]: undefined;
|
|
10065
|
+
[x: `uint216[${string}]`]: undefined;
|
|
10066
|
+
[x: `uint224[${string}]`]: undefined;
|
|
10067
|
+
[x: `uint232[${string}]`]: undefined;
|
|
10068
|
+
[x: `uint240[${string}]`]: undefined;
|
|
10069
|
+
[x: `uint248[${string}]`]: undefined;
|
|
10070
|
+
[x: `uint256[${string}]`]: undefined;
|
|
10071
|
+
string?: undefined;
|
|
10072
|
+
address?: undefined;
|
|
10073
|
+
bool?: undefined;
|
|
10074
|
+
bytes?: undefined;
|
|
10075
|
+
bytes20?: undefined;
|
|
10076
|
+
bytes1?: undefined;
|
|
10077
|
+
bytes2?: undefined;
|
|
10078
|
+
bytes3?: undefined;
|
|
10079
|
+
bytes4?: undefined;
|
|
10080
|
+
bytes5?: undefined;
|
|
10081
|
+
bytes6?: undefined;
|
|
10082
|
+
bytes7?: undefined;
|
|
10083
|
+
bytes8?: undefined;
|
|
10084
|
+
bytes9?: undefined;
|
|
10085
|
+
bytes10?: undefined;
|
|
10086
|
+
bytes11?: undefined;
|
|
10087
|
+
bytes12?: undefined;
|
|
10088
|
+
bytes13?: undefined;
|
|
10089
|
+
bytes14?: undefined;
|
|
10090
|
+
bytes15?: undefined;
|
|
10091
|
+
bytes16?: undefined;
|
|
10092
|
+
bytes17?: undefined;
|
|
10093
|
+
bytes18?: undefined;
|
|
10094
|
+
bytes19?: undefined;
|
|
10095
|
+
bytes21?: undefined;
|
|
10096
|
+
bytes22?: undefined;
|
|
10097
|
+
bytes23?: undefined;
|
|
10098
|
+
bytes24?: undefined;
|
|
10099
|
+
bytes25?: undefined;
|
|
10100
|
+
bytes26?: undefined;
|
|
10101
|
+
bytes27?: undefined;
|
|
10102
|
+
bytes28?: undefined;
|
|
10103
|
+
bytes29?: undefined;
|
|
10104
|
+
bytes30?: undefined;
|
|
10105
|
+
bytes31?: undefined;
|
|
10106
|
+
bytes32?: undefined;
|
|
10107
|
+
int8?: undefined;
|
|
10108
|
+
int16?: undefined;
|
|
10109
|
+
int24?: undefined;
|
|
10110
|
+
int32?: undefined;
|
|
10111
|
+
int40?: undefined;
|
|
10112
|
+
int48?: undefined;
|
|
10113
|
+
int56?: undefined;
|
|
10114
|
+
int64?: undefined;
|
|
10115
|
+
int72?: undefined;
|
|
10116
|
+
int80?: undefined;
|
|
10117
|
+
int88?: undefined;
|
|
10118
|
+
int96?: undefined;
|
|
10119
|
+
int104?: undefined;
|
|
10120
|
+
int112?: undefined;
|
|
10121
|
+
int120?: undefined;
|
|
10122
|
+
int128?: undefined;
|
|
10123
|
+
int136?: undefined;
|
|
10124
|
+
int144?: undefined;
|
|
10125
|
+
int152?: undefined;
|
|
10126
|
+
int160?: undefined;
|
|
10127
|
+
int168?: undefined;
|
|
10128
|
+
int176?: undefined;
|
|
10129
|
+
int184?: undefined;
|
|
10130
|
+
int192?: undefined;
|
|
10131
|
+
int200?: undefined;
|
|
10132
|
+
int208?: undefined;
|
|
10133
|
+
int216?: undefined;
|
|
10134
|
+
int224?: undefined;
|
|
10135
|
+
int232?: undefined;
|
|
10136
|
+
int240?: undefined;
|
|
10137
|
+
int248?: undefined;
|
|
10138
|
+
int256?: undefined;
|
|
10139
|
+
uint8?: undefined;
|
|
10140
|
+
uint16?: undefined;
|
|
10141
|
+
uint24?: undefined;
|
|
10142
|
+
uint32?: undefined;
|
|
10143
|
+
uint40?: undefined;
|
|
10144
|
+
uint48?: undefined;
|
|
10145
|
+
uint56?: undefined;
|
|
10146
|
+
uint64?: undefined;
|
|
10147
|
+
uint72?: undefined;
|
|
10148
|
+
uint80?: undefined;
|
|
10149
|
+
uint88?: undefined;
|
|
10150
|
+
uint96?: undefined;
|
|
10151
|
+
uint104?: undefined;
|
|
10152
|
+
uint112?: undefined;
|
|
10153
|
+
uint120?: undefined;
|
|
10154
|
+
uint128?: undefined;
|
|
10155
|
+
uint136?: undefined;
|
|
10156
|
+
uint144?: undefined;
|
|
10157
|
+
uint152?: undefined;
|
|
10158
|
+
uint160?: undefined;
|
|
10159
|
+
uint168?: undefined;
|
|
10160
|
+
uint176?: undefined;
|
|
10161
|
+
uint184?: undefined;
|
|
10162
|
+
uint192?: undefined;
|
|
10163
|
+
uint200?: undefined;
|
|
10164
|
+
uint208?: undefined;
|
|
10165
|
+
uint216?: undefined;
|
|
10166
|
+
uint224?: undefined;
|
|
10167
|
+
uint232?: undefined;
|
|
10168
|
+
uint240?: undefined;
|
|
10169
|
+
uint248?: undefined;
|
|
10170
|
+
uint256?: undefined;
|
|
10171
|
+
}, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(typedDataDefinition: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
|
|
10172
|
+
publicKey: `0x${string}`;
|
|
10173
|
+
source: string;
|
|
10174
|
+
type: "local";
|
|
6147
10175
|
}>>;
|
|
6148
10176
|
}>;
|
|
6149
10177
|
getProvider: () => Promise<{
|
|
6150
|
-
account: Account;
|
|
10178
|
+
account: import("viem").Account;
|
|
6151
10179
|
batch?: {
|
|
6152
10180
|
multicall?: boolean | {
|
|
6153
10181
|
batchSize?: number | undefined;
|
|
@@ -6158,7 +10186,7 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
6158
10186
|
ccipRead?: false | {
|
|
6159
10187
|
request?: ((parameters: import("viem").CcipRequestParameters) => Promise<`0x${string}`>) | undefined;
|
|
6160
10188
|
} | undefined;
|
|
6161
|
-
chain: Chain;
|
|
10189
|
+
chain: import("viem").Chain;
|
|
6162
10190
|
key: string;
|
|
6163
10191
|
name: string;
|
|
6164
10192
|
pollingInterval: number;
|
|
@@ -6167,15 +10195,15 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
6167
10195
|
type: string;
|
|
6168
10196
|
uid: string;
|
|
6169
10197
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
6170
|
-
deployContract: <const abi extends import("viem").Abi | readonly unknown[], chainOverride extends Chain | undefined>(args: import("viem").DeployContractParameters<abi, Chain, Account, chainOverride>) => Promise<`0x${string}`>;
|
|
10198
|
+
deployContract: <const abi extends import("viem").Abi | readonly unknown[], chainOverride extends import("viem").Chain | undefined>(args: import("viem").DeployContractParameters<abi, import("viem").Chain, import("viem").Account, chainOverride>) => Promise<`0x${string}`>;
|
|
6171
10199
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
6172
10200
|
getChainId: () => Promise<number>;
|
|
6173
10201
|
getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
|
|
6174
|
-
prepareTransactionRequest: <const TRequest extends import("viem").PrepareTransactionRequestRequest<Chain, TChainOverride>, TChainOverride extends Chain | undefined = undefined, TAccountOverride extends `0x${string}` | Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account, TChainOverride, TAccountOverride, TRequest>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, TChainOverride> extends infer T_58 ? T_58 extends import("viem").DeriveChain<Chain, TChainOverride> ? T_58 extends Chain ? {
|
|
10202
|
+
prepareTransactionRequest: <const TRequest extends import("viem").PrepareTransactionRequestRequest<import("viem").Chain, TChainOverride>, TChainOverride extends import("viem").Chain | undefined = undefined, TAccountOverride extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem").Chain, import("viem").Account, TChainOverride, TAccountOverride, TRequest>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride> extends infer T_58 ? T_58 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride> ? T_58 extends import("viem").Chain ? {
|
|
6175
10203
|
chain: T_58;
|
|
6176
10204
|
} : {
|
|
6177
10205
|
chain?: undefined;
|
|
6178
|
-
} : never : never) & (import("viem").DeriveAccount<Account, TAccountOverride> extends infer T_59 ? T_59 extends import("viem").DeriveAccount<Account, TAccountOverride> ? T_59 extends Account ? {
|
|
10206
|
+
} : never : never) & (import("viem").DeriveAccount<import("viem").Account, TAccountOverride> extends infer T_59 ? T_59 extends import("viem").DeriveAccount<import("viem").Account, TAccountOverride> ? T_59 extends import("viem").Account ? {
|
|
6179
10207
|
account: T_59;
|
|
6180
10208
|
from: `0x${string}`;
|
|
6181
10209
|
} : {
|
|
@@ -7559,11 +11587,11 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
7559
11587
|
sidecars: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
7560
11588
|
}, import("viem").TransactionSerializableEIP4844>)) | import("viem").Opaque<import("viem").TransactionSerializableEIP4844, TRequest> | import("viem").Opaque<import("viem").TransactionRequestEIP4844, TRequest> ? "eip4844" : never) | (TRequest["type"] extends string ? TRequest["type"] : never)>) ? T_67 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never)>> & {
|
|
7561
11589
|
chainId?: number | undefined;
|
|
7562
|
-
}, (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_68 ? T_68 extends (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_68 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_68 : never : never> & (unknown extends TRequest["kzg"] ? {} : Pick<TRequest, "kzg">) extends infer T_46 ? { [K in keyof T_46]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, TChainOverride> extends infer T_47 ? T_47 extends import("viem").DeriveChain<Chain, TChainOverride> ? T_47 extends Chain ? {
|
|
11590
|
+
}, (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_68 ? T_68 extends (TRequest["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? TRequest["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_68 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_68 : never : never> & (unknown extends TRequest["kzg"] ? {} : Pick<TRequest, "kzg">) extends infer T_46 ? { [K in keyof T_46]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, TChainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, TChainOverride> extends infer T_47 ? T_47 extends import("viem").DeriveChain<import("viem").Chain, TChainOverride> ? T_47 extends import("viem").Chain ? {
|
|
7563
11591
|
chain: T_47;
|
|
7564
11592
|
} : {
|
|
7565
11593
|
chain?: undefined;
|
|
7566
|
-
} : never : never) & (import("viem").DeriveAccount<Account, TAccountOverride> extends infer T_48 ? T_48 extends import("viem").DeriveAccount<Account, TAccountOverride> ? T_48 extends Account ? {
|
|
11594
|
+
} : never : never) & (import("viem").DeriveAccount<import("viem").Account, TAccountOverride> extends infer T_48 ? T_48 extends import("viem").DeriveAccount<import("viem").Account, TAccountOverride> ? T_48 extends import("viem").Account ? {
|
|
7567
11595
|
account: T_48;
|
|
7568
11596
|
from: `0x${string}`;
|
|
7569
11597
|
} : {
|
|
@@ -8954,12 +12982,10 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
8954
12982
|
eth_accounts: Record<string, any>;
|
|
8955
12983
|
}) => Promise<import("viem").RequestPermissionsReturnType>;
|
|
8956
12984
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
8957
|
-
sendTransaction: <const TRequest_1 extends import("viem").SendTransactionRequest<Chain, TChainOverride_1>, TChainOverride_1 extends Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<Chain, Account, TChainOverride_1, TRequest_1>) => Promise<`0x${string}`>;
|
|
8958
|
-
signMessage: (args: import("viem").SignMessageParameters<Account>) => Promise<`0x${string}`>;
|
|
8959
|
-
signTransaction: <TChainOverride_2 extends Chain | undefined>(args: import("viem").SignTransactionParameters<Chain, Account, TChainOverride_2>) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | import("viem").TransactionSerializedLegacy>;
|
|
12985
|
+
sendTransaction: <const TRequest_1 extends import("viem").SendTransactionRequest<import("viem").Chain, TChainOverride_1>, TChainOverride_1 extends import("viem").Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<import("viem").Chain, import("viem").Account, TChainOverride_1, TRequest_1>) => Promise<`0x${string}`>;
|
|
12986
|
+
signMessage: (args: import("viem").SignMessageParameters<import("viem").Account>) => Promise<`0x${string}`>;
|
|
12987
|
+
signTransaction: <TChainOverride_2 extends import("viem").Chain | undefined>(args: import("viem").SignTransactionParameters<import("viem").Chain, import("viem").Account, TChainOverride_2>) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | import("viem").TransactionSerializedLegacy>;
|
|
8960
12988
|
signTypedData: <const TTypedData extends {
|
|
8961
|
-
[key: string]: unknown;
|
|
8962
|
-
} | {
|
|
8963
12989
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
8964
12990
|
[x: `string[${string}]`]: undefined;
|
|
8965
12991
|
[x: `function[${string}]`]: undefined;
|
|
@@ -9164,10 +13190,12 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
9164
13190
|
uint240?: undefined;
|
|
9165
13191
|
uint248?: undefined;
|
|
9166
13192
|
uint256?: undefined;
|
|
9167
|
-
}
|
|
13193
|
+
} | {
|
|
13194
|
+
[key: string]: unknown;
|
|
13195
|
+
}, TPrimaryType extends string>(args: import("viem").SignTypedDataParameters<TTypedData, TPrimaryType, import("viem").Account>) => Promise<`0x${string}`>;
|
|
9168
13196
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
9169
13197
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
9170
|
-
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "payable" | "nonpayable">, args extends import("viem").ContractFunctionArgs<abi_1, "payable" | "nonpayable", functionName>, TChainOverride_3 extends Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_1, functionName, args, Chain, Account, TChainOverride_3>) => Promise<`0x${string}`>;
|
|
13198
|
+
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "payable" | "nonpayable">, args extends import("viem").ContractFunctionArgs<abi_1, "payable" | "nonpayable", functionName>, TChainOverride_3 extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_1, functionName, args, import("viem").Chain, import("viem").Account, TChainOverride_3>) => Promise<`0x${string}`>;
|
|
9171
13199
|
extend: <const client extends {
|
|
9172
13200
|
[x: string]: unknown;
|
|
9173
13201
|
account?: undefined;
|
|
@@ -9182,16 +13210,22 @@ export declare const getCreateConnectorFn: (parameters: ConnectorParameters) =>
|
|
|
9182
13210
|
transport?: undefined;
|
|
9183
13211
|
type?: undefined;
|
|
9184
13212
|
uid?: undefined;
|
|
9185
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<Transport, Chain, Account>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain, Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<Transport, Chain, Account, import("viem").WalletRpcSchema, import("viem").WalletActions<Chain, Account>>) => client) => import("viem").Client<Transport, Chain, Account, import("viem").WalletRpcSchema, { [K_1 in keyof client]: client[K_1]; } & import("viem").WalletActions<Chain, Account>>;
|
|
13213
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, import("viem").Chain, import("viem").Account>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<import("viem").Chain, import("viem").Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").Transport, import("viem").Chain, import("viem").Account, import("viem").WalletRpcSchema, import("viem").WalletActions<import("viem").Chain, import("viem").Account>>) => client) => import("viem").Client<import("viem").Transport, import("viem").Chain, import("viem").Account, import("viem").WalletRpcSchema, { [K_1 in keyof client]: client[K_1]; } & import("viem").WalletActions<import("viem").Chain, import("viem").Account>>;
|
|
9186
13214
|
}>;
|
|
13215
|
+
handleAccountsChange: ({ accounts }: {
|
|
13216
|
+
accounts: string[];
|
|
13217
|
+
}) => void;
|
|
13218
|
+
handleChainChange: ({ chain }: {
|
|
13219
|
+
chain: string;
|
|
13220
|
+
}) => void;
|
|
9187
13221
|
id: string;
|
|
9188
13222
|
isAuthorized: () => Promise<boolean>;
|
|
9189
13223
|
name: "Dynamic";
|
|
9190
|
-
onAccountsChanged: (
|
|
13224
|
+
onAccountsChanged: (_: string[]) => void;
|
|
9191
13225
|
onChainChanged: (chainId: number | string) => void;
|
|
9192
13226
|
onDisconnect: () => void;
|
|
9193
13227
|
switchChain: ({ chainId }: {
|
|
9194
13228
|
chainId: number;
|
|
9195
|
-
}) => Promise<Chain>;
|
|
13229
|
+
}) => Promise<import("viem").Chain>;
|
|
9196
13230
|
type: "dynamic";
|
|
9197
13231
|
}, {}>;
|