@edgeandnode/graph-auth-kit 2.12.1 → 2.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +94 -93
- package/dist/client.d.ts.map +1 -1
- package/dist/constants.d.ts +2 -2
- package/dist/constants.d.ts.map +1 -1
- package/dist/test-harness/utils.d.ts +12 -12
- package/package.json +26 -27
package/dist/client.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
85
85
|
};
|
|
86
86
|
rpcUrls: {
|
|
87
87
|
readonly default: {
|
|
88
|
-
readonly http: readonly ["https://
|
|
88
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
91
|
sourceId?: number | undefined;
|
|
@@ -227,7 +227,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
227
227
|
};
|
|
228
228
|
rpcUrls: {
|
|
229
229
|
readonly default: {
|
|
230
|
-
readonly http: readonly ["https://
|
|
230
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
231
231
|
};
|
|
232
232
|
};
|
|
233
233
|
sourceId?: number | undefined;
|
|
@@ -372,7 +372,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
372
372
|
};
|
|
373
373
|
rpcUrls: {
|
|
374
374
|
readonly default: {
|
|
375
|
-
readonly http: readonly ["https://
|
|
375
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
376
376
|
};
|
|
377
377
|
};
|
|
378
378
|
sourceId?: number | undefined;
|
|
@@ -517,7 +517,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
517
517
|
};
|
|
518
518
|
rpcUrls: {
|
|
519
519
|
readonly default: {
|
|
520
|
-
readonly http: readonly ["https://
|
|
520
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
521
521
|
};
|
|
522
522
|
};
|
|
523
523
|
sourceId?: number | undefined;
|
|
@@ -668,7 +668,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
668
668
|
};
|
|
669
669
|
rpcUrls: {
|
|
670
670
|
readonly default: {
|
|
671
|
-
readonly http: readonly ["https://
|
|
671
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
672
672
|
};
|
|
673
673
|
};
|
|
674
674
|
sourceId?: number | undefined;
|
|
@@ -821,7 +821,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
821
821
|
};
|
|
822
822
|
rpcUrls: {
|
|
823
823
|
readonly default: {
|
|
824
|
-
readonly http: readonly ["https://
|
|
824
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
825
825
|
};
|
|
826
826
|
};
|
|
827
827
|
sourceId?: number | undefined;
|
|
@@ -896,10 +896,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
896
896
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
897
897
|
}>) => Promise<import("viem").CallReturnType>;
|
|
898
898
|
createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
|
|
899
|
-
createContractEventFilter: <const abi extends import("
|
|
900
|
-
createEventFilter: <const abiEvent extends import("
|
|
899
|
+
createContractEventFilter: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined, args extends import("viem").MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import("viem").CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
|
|
900
|
+
createEventFilter: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, _EventName extends string | undefined = import("viem").MaybeAbiEventName<abiEvent>, _Args extends import("viem").MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import("viem").CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import("viem").CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
|
|
901
901
|
createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
|
|
902
|
-
estimateContractGas: <chain extends import("viem").Chain | undefined, const abi extends import("
|
|
902
|
+
estimateContractGas: <chain extends import("viem").Chain | undefined, const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import("viem").EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import("viem").EstimateContractGasReturnType>;
|
|
903
903
|
estimateGas: (args: import("viem").EstimateGasParameters<{
|
|
904
904
|
blockExplorers: {
|
|
905
905
|
readonly default: {
|
|
@@ -969,7 +969,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
969
969
|
};
|
|
970
970
|
rpcUrls: {
|
|
971
971
|
readonly default: {
|
|
972
|
-
readonly http: readonly ["https://
|
|
972
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
973
973
|
};
|
|
974
974
|
};
|
|
975
975
|
sourceId?: number | undefined;
|
|
@@ -1057,8 +1057,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1057
1057
|
extraData: import("viem").Hex;
|
|
1058
1058
|
gasLimit: bigint;
|
|
1059
1059
|
gasUsed: bigint;
|
|
1060
|
-
miner: import("
|
|
1060
|
+
miner: import("abitype").Address;
|
|
1061
1061
|
mixHash: import("viem").Hash;
|
|
1062
|
+
parentBeaconBlockRoot?: import("viem").Hex | undefined;
|
|
1062
1063
|
parentHash: import("viem").Hash;
|
|
1063
1064
|
receiptsRoot: import("viem").Hex;
|
|
1064
1065
|
sealFields: import("viem").Hex[];
|
|
@@ -1075,14 +1076,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1075
1076
|
value: bigint;
|
|
1076
1077
|
type: "legacy";
|
|
1077
1078
|
yParity?: undefined;
|
|
1078
|
-
from: import("
|
|
1079
|
+
from: import("abitype").Address;
|
|
1079
1080
|
gas: bigint;
|
|
1080
1081
|
hash: import("viem").Hash;
|
|
1081
1082
|
input: import("viem").Hex;
|
|
1082
1083
|
nonce: number;
|
|
1083
1084
|
r: import("viem").Hex;
|
|
1084
1085
|
s: import("viem").Hex;
|
|
1085
|
-
to: import("
|
|
1086
|
+
to: import("abitype").Address | null;
|
|
1086
1087
|
typeHex: import("viem").Hex | null;
|
|
1087
1088
|
v: bigint;
|
|
1088
1089
|
accessList?: undefined;
|
|
@@ -1100,14 +1101,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1100
1101
|
value: bigint;
|
|
1101
1102
|
type: "eip2930";
|
|
1102
1103
|
yParity: number;
|
|
1103
|
-
from: import("
|
|
1104
|
+
from: import("abitype").Address;
|
|
1104
1105
|
gas: bigint;
|
|
1105
1106
|
hash: import("viem").Hash;
|
|
1106
1107
|
input: import("viem").Hex;
|
|
1107
1108
|
nonce: number;
|
|
1108
1109
|
r: import("viem").Hex;
|
|
1109
1110
|
s: import("viem").Hex;
|
|
1110
|
-
to: import("
|
|
1111
|
+
to: import("abitype").Address | null;
|
|
1111
1112
|
typeHex: import("viem").Hex | null;
|
|
1112
1113
|
v: bigint;
|
|
1113
1114
|
accessList: import("viem").AccessList;
|
|
@@ -1125,14 +1126,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1125
1126
|
value: bigint;
|
|
1126
1127
|
type: "eip1559";
|
|
1127
1128
|
yParity: number;
|
|
1128
|
-
from: import("
|
|
1129
|
+
from: import("abitype").Address;
|
|
1129
1130
|
gas: bigint;
|
|
1130
1131
|
hash: import("viem").Hash;
|
|
1131
1132
|
input: import("viem").Hex;
|
|
1132
1133
|
nonce: number;
|
|
1133
1134
|
r: import("viem").Hex;
|
|
1134
1135
|
s: import("viem").Hex;
|
|
1135
|
-
to: import("
|
|
1136
|
+
to: import("abitype").Address | null;
|
|
1136
1137
|
typeHex: import("viem").Hex | null;
|
|
1137
1138
|
v: bigint;
|
|
1138
1139
|
accessList: import("viem").AccessList;
|
|
@@ -1150,14 +1151,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1150
1151
|
value: bigint;
|
|
1151
1152
|
type: "eip4844";
|
|
1152
1153
|
yParity: number;
|
|
1153
|
-
from: import("
|
|
1154
|
+
from: import("abitype").Address;
|
|
1154
1155
|
gas: bigint;
|
|
1155
1156
|
hash: import("viem").Hash;
|
|
1156
1157
|
input: import("viem").Hex;
|
|
1157
1158
|
nonce: number;
|
|
1158
1159
|
r: import("viem").Hex;
|
|
1159
1160
|
s: import("viem").Hex;
|
|
1160
|
-
to: import("
|
|
1161
|
+
to: import("abitype").Address | null;
|
|
1161
1162
|
typeHex: import("viem").Hex | null;
|
|
1162
1163
|
v: bigint;
|
|
1163
1164
|
accessList: import("viem").AccessList;
|
|
@@ -1175,14 +1176,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1175
1176
|
value: bigint;
|
|
1176
1177
|
type: "eip7702";
|
|
1177
1178
|
yParity: number;
|
|
1178
|
-
from: import("
|
|
1179
|
+
from: import("abitype").Address;
|
|
1179
1180
|
gas: bigint;
|
|
1180
1181
|
hash: import("viem").Hash;
|
|
1181
1182
|
input: import("viem").Hex;
|
|
1182
1183
|
nonce: number;
|
|
1183
1184
|
r: import("viem").Hex;
|
|
1184
1185
|
s: import("viem").Hex;
|
|
1185
|
-
to: import("
|
|
1186
|
+
to: import("abitype").Address | null;
|
|
1186
1187
|
typeHex: import("viem").Hex | null;
|
|
1187
1188
|
v: bigint;
|
|
1188
1189
|
accessList: import("viem").AccessList;
|
|
@@ -1203,7 +1204,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1203
1204
|
getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
1204
1205
|
getChainId: () => Promise<import("viem").GetChainIdReturnType>;
|
|
1205
1206
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
1206
|
-
getContractEvents: <const abi extends import("
|
|
1207
|
+
getContractEvents: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1207
1208
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
1208
1209
|
getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
|
|
1209
1210
|
getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
|
|
@@ -1280,7 +1281,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1280
1281
|
};
|
|
1281
1282
|
rpcUrls: {
|
|
1282
1283
|
readonly default: {
|
|
1283
|
-
readonly http: readonly ["https://
|
|
1284
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
1284
1285
|
};
|
|
1285
1286
|
};
|
|
1286
1287
|
sourceId?: number | undefined;
|
|
@@ -1354,10 +1355,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1354
1355
|
formatters?: undefined;
|
|
1355
1356
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
1356
1357
|
}, chainOverride, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
|
|
1357
|
-
getFilterChanges: <filterType extends import("viem").FilterType, const abi extends import("
|
|
1358
|
-
getFilterLogs: <const abi extends import("
|
|
1358
|
+
getFilterChanges: <filterType extends import("viem").FilterType, const abi extends import("abitype").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
1359
|
+
getFilterLogs: <const abi extends import("abitype").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1359
1360
|
getGasPrice: () => Promise<import("viem").GetGasPriceReturnType>;
|
|
1360
|
-
getLogs: <const abiEvent extends import("
|
|
1361
|
+
getLogs: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args?: import("viem").GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import("viem").GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
1361
1362
|
getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
|
|
1362
1363
|
estimateMaxPriorityFeePerGas: <chainOverride extends import("viem").Chain | undefined = undefined>(args?: {
|
|
1363
1364
|
chain?: chainOverride | null | undefined;
|
|
@@ -1367,14 +1368,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1367
1368
|
value: bigint;
|
|
1368
1369
|
type: "legacy";
|
|
1369
1370
|
yParity?: undefined;
|
|
1370
|
-
from: import("
|
|
1371
|
+
from: import("abitype").Address;
|
|
1371
1372
|
gas: bigint;
|
|
1372
1373
|
hash: import("viem").Hash;
|
|
1373
1374
|
input: import("viem").Hex;
|
|
1374
1375
|
nonce: number;
|
|
1375
1376
|
r: import("viem").Hex;
|
|
1376
1377
|
s: import("viem").Hex;
|
|
1377
|
-
to: import("
|
|
1378
|
+
to: import("abitype").Address | null;
|
|
1378
1379
|
typeHex: import("viem").Hex | null;
|
|
1379
1380
|
v: bigint;
|
|
1380
1381
|
accessList?: undefined;
|
|
@@ -1392,14 +1393,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1392
1393
|
value: bigint;
|
|
1393
1394
|
type: "eip2930";
|
|
1394
1395
|
yParity: number;
|
|
1395
|
-
from: import("
|
|
1396
|
+
from: import("abitype").Address;
|
|
1396
1397
|
gas: bigint;
|
|
1397
1398
|
hash: import("viem").Hash;
|
|
1398
1399
|
input: import("viem").Hex;
|
|
1399
1400
|
nonce: number;
|
|
1400
1401
|
r: import("viem").Hex;
|
|
1401
1402
|
s: import("viem").Hex;
|
|
1402
|
-
to: import("
|
|
1403
|
+
to: import("abitype").Address | null;
|
|
1403
1404
|
typeHex: import("viem").Hex | null;
|
|
1404
1405
|
v: bigint;
|
|
1405
1406
|
accessList: import("viem").AccessList;
|
|
@@ -1417,14 +1418,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1417
1418
|
value: bigint;
|
|
1418
1419
|
type: "eip1559";
|
|
1419
1420
|
yParity: number;
|
|
1420
|
-
from: import("
|
|
1421
|
+
from: import("abitype").Address;
|
|
1421
1422
|
gas: bigint;
|
|
1422
1423
|
hash: import("viem").Hash;
|
|
1423
1424
|
input: import("viem").Hex;
|
|
1424
1425
|
nonce: number;
|
|
1425
1426
|
r: import("viem").Hex;
|
|
1426
1427
|
s: import("viem").Hex;
|
|
1427
|
-
to: import("
|
|
1428
|
+
to: import("abitype").Address | null;
|
|
1428
1429
|
typeHex: import("viem").Hex | null;
|
|
1429
1430
|
v: bigint;
|
|
1430
1431
|
accessList: import("viem").AccessList;
|
|
@@ -1442,14 +1443,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1442
1443
|
value: bigint;
|
|
1443
1444
|
type: "eip4844";
|
|
1444
1445
|
yParity: number;
|
|
1445
|
-
from: import("
|
|
1446
|
+
from: import("abitype").Address;
|
|
1446
1447
|
gas: bigint;
|
|
1447
1448
|
hash: import("viem").Hash;
|
|
1448
1449
|
input: import("viem").Hex;
|
|
1449
1450
|
nonce: number;
|
|
1450
1451
|
r: import("viem").Hex;
|
|
1451
1452
|
s: import("viem").Hex;
|
|
1452
|
-
to: import("
|
|
1453
|
+
to: import("abitype").Address | null;
|
|
1453
1454
|
typeHex: import("viem").Hex | null;
|
|
1454
1455
|
v: bigint;
|
|
1455
1456
|
accessList: import("viem").AccessList;
|
|
@@ -1467,14 +1468,14 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1467
1468
|
value: bigint;
|
|
1468
1469
|
type: "eip7702";
|
|
1469
1470
|
yParity: number;
|
|
1470
|
-
from: import("
|
|
1471
|
+
from: import("abitype").Address;
|
|
1471
1472
|
gas: bigint;
|
|
1472
1473
|
hash: import("viem").Hash;
|
|
1473
1474
|
input: import("viem").Hex;
|
|
1474
1475
|
nonce: number;
|
|
1475
1476
|
r: import("viem").Hex;
|
|
1476
1477
|
s: import("viem").Hex;
|
|
1477
|
-
to: import("
|
|
1478
|
+
to: import("abitype").Address | null;
|
|
1478
1479
|
typeHex: import("viem").Hex | null;
|
|
1479
1480
|
v: bigint;
|
|
1480
1481
|
accessList: import("viem").AccessList;
|
|
@@ -1558,7 +1559,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1558
1559
|
};
|
|
1559
1560
|
rpcUrls: {
|
|
1560
1561
|
readonly default: {
|
|
1561
|
-
readonly http: readonly ["https://
|
|
1562
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
1562
1563
|
};
|
|
1563
1564
|
};
|
|
1564
1565
|
sourceId?: number | undefined;
|
|
@@ -1704,7 +1705,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1704
1705
|
};
|
|
1705
1706
|
rpcUrls: {
|
|
1706
1707
|
readonly default: {
|
|
1707
|
-
readonly http: readonly ["https://
|
|
1708
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
1708
1709
|
};
|
|
1709
1710
|
};
|
|
1710
1711
|
sourceId?: number | undefined;
|
|
@@ -1777,7 +1778,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1777
1778
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1778
1779
|
formatters?: undefined;
|
|
1779
1780
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
1780
|
-
}, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("
|
|
1781
|
+
}, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("abitype").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<{
|
|
1781
1782
|
blockExplorers: {
|
|
1782
1783
|
readonly default: {
|
|
1783
1784
|
readonly name: "Etherscan";
|
|
@@ -1846,7 +1847,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1846
1847
|
};
|
|
1847
1848
|
rpcUrls: {
|
|
1848
1849
|
readonly default: {
|
|
1849
|
-
readonly http: readonly ["https://
|
|
1850
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
1850
1851
|
};
|
|
1851
1852
|
};
|
|
1852
1853
|
sourceId?: number | undefined;
|
|
@@ -1988,7 +1989,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1988
1989
|
};
|
|
1989
1990
|
rpcUrls: {
|
|
1990
1991
|
readonly default: {
|
|
1991
|
-
readonly http: readonly ["https://
|
|
1992
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
1992
1993
|
};
|
|
1993
1994
|
};
|
|
1994
1995
|
sourceId?: number | undefined;
|
|
@@ -2130,7 +2131,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2130
2131
|
};
|
|
2131
2132
|
rpcUrls: {
|
|
2132
2133
|
readonly default: {
|
|
2133
|
-
readonly http: readonly ["https://
|
|
2134
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
2134
2135
|
};
|
|
2135
2136
|
};
|
|
2136
2137
|
sourceId?: number | undefined;
|
|
@@ -2272,7 +2273,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2272
2273
|
};
|
|
2273
2274
|
rpcUrls: {
|
|
2274
2275
|
readonly default: {
|
|
2275
|
-
readonly http: readonly ["https://
|
|
2276
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
2276
2277
|
};
|
|
2277
2278
|
};
|
|
2278
2279
|
sourceId?: number | undefined;
|
|
@@ -2351,7 +2352,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2351
2352
|
chain?: undefined;
|
|
2352
2353
|
} : never : never) & (import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> ? T_2 extends import("viem").Account ? {
|
|
2353
2354
|
account: T_2;
|
|
2354
|
-
from: import("
|
|
2355
|
+
from: import("abitype").Address;
|
|
2355
2356
|
} : {
|
|
2356
2357
|
account?: undefined;
|
|
2357
2358
|
from?: undefined;
|
|
@@ -4706,7 +4707,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
4706
4707
|
};
|
|
4707
4708
|
rpcUrls: {
|
|
4708
4709
|
readonly default: {
|
|
4709
|
-
readonly http: readonly ["https://
|
|
4710
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
4710
4711
|
};
|
|
4711
4712
|
};
|
|
4712
4713
|
sourceId?: number | undefined;
|
|
@@ -4848,7 +4849,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
4848
4849
|
};
|
|
4849
4850
|
rpcUrls: {
|
|
4850
4851
|
readonly default: {
|
|
4851
|
-
readonly http: readonly ["https://
|
|
4852
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
4852
4853
|
};
|
|
4853
4854
|
};
|
|
4854
4855
|
sourceId?: number | undefined;
|
|
@@ -4990,7 +4991,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
4990
4991
|
};
|
|
4991
4992
|
rpcUrls: {
|
|
4992
4993
|
readonly default: {
|
|
4993
|
-
readonly http: readonly ["https://
|
|
4994
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
4994
4995
|
};
|
|
4995
4996
|
};
|
|
4996
4997
|
sourceId?: number | undefined;
|
|
@@ -5069,7 +5070,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5069
5070
|
chain?: undefined;
|
|
5070
5071
|
} : never : never) & (import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> ? T_2 extends import("viem").Account ? {
|
|
5071
5072
|
account: T_2;
|
|
5072
|
-
from: import("
|
|
5073
|
+
from: import("abitype").Address;
|
|
5073
5074
|
} : {
|
|
5074
5075
|
account?: undefined;
|
|
5075
5076
|
from?: undefined;
|
|
@@ -7356,9 +7357,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7356
7357
|
}) | (import("viem").ValueOf<Required<{ [K_9 in keyof request]: K_9 extends "value" | "type" | "yParity" | "gas" | "nonce" | "r" | "s" | "to" | "v" | "accessList" | "authorizationList" | "chainId" | "gasPrice" | "maxFeePerBlobGas" | "maxFeePerGas" | "maxPriorityFeePerGas" | "data" ? K_9 : undefined; }>> extends string ? import("viem").TransactionSerializableEIP7702 : never) | (import("viem").ValueOf<Required<{ [K_10 in keyof request]: K_10 extends "accessList" | "authorizationList" | keyof import("viem").FeeValuesEIP1559<bigint> | keyof import("viem").TransactionRequestBase<bigint, number, "eip7702"> ? K_10 : undefined; }>> extends string ? import("viem").TransactionRequestEIP7702 : never) ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
7357
7358
|
chainId?: number | undefined;
|
|
7358
7359
|
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") ? T_8 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
|
|
7359
|
-
readContract: <const abi extends import("
|
|
7360
|
+
readContract: <const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "pure" | "view">, args extends import("viem").ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import("viem").ReadContractParameters<abi, functionName, args>) => Promise<import("viem").ReadContractReturnType<abi, functionName, args>>;
|
|
7360
7361
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
|
|
7361
|
-
simulateContract: <const abi extends import("
|
|
7362
|
+
simulateContract: <const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined, accountOverride extends import("viem").Account | import("abitype").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, {
|
|
7362
7363
|
blockExplorers: {
|
|
7363
7364
|
readonly default: {
|
|
7364
7365
|
readonly name: "Etherscan";
|
|
@@ -7427,7 +7428,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7427
7428
|
};
|
|
7428
7429
|
rpcUrls: {
|
|
7429
7430
|
readonly default: {
|
|
7430
|
-
readonly http: readonly ["https://
|
|
7431
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
7431
7432
|
};
|
|
7432
7433
|
};
|
|
7433
7434
|
sourceId?: number | undefined;
|
|
@@ -7569,7 +7570,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7569
7570
|
};
|
|
7570
7571
|
rpcUrls: {
|
|
7571
7572
|
readonly default: {
|
|
7572
|
-
readonly http: readonly ["https://
|
|
7573
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
7573
7574
|
};
|
|
7574
7575
|
};
|
|
7575
7576
|
sourceId?: number | undefined;
|
|
@@ -7647,7 +7648,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7647
7648
|
verifySiweMessage: (args: {
|
|
7648
7649
|
blockNumber?: bigint | undefined;
|
|
7649
7650
|
blockTag?: import("viem").BlockTag | undefined;
|
|
7650
|
-
address?: import("
|
|
7651
|
+
address?: import("abitype").Address | undefined;
|
|
7651
7652
|
nonce?: string | undefined;
|
|
7652
7653
|
domain?: string | undefined;
|
|
7653
7654
|
scheme?: string | undefined;
|
|
@@ -7726,7 +7727,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7726
7727
|
};
|
|
7727
7728
|
rpcUrls: {
|
|
7728
7729
|
readonly default: {
|
|
7729
|
-
readonly http: readonly ["https://
|
|
7730
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
7730
7731
|
};
|
|
7731
7732
|
};
|
|
7732
7733
|
sourceId?: number | undefined;
|
|
@@ -7870,7 +7871,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7870
7871
|
};
|
|
7871
7872
|
rpcUrls: {
|
|
7872
7873
|
readonly default: {
|
|
7873
|
-
readonly http: readonly ["https://
|
|
7874
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
7874
7875
|
};
|
|
7875
7876
|
};
|
|
7876
7877
|
sourceId?: number | undefined;
|
|
@@ -7944,8 +7945,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7944
7945
|
formatters?: undefined;
|
|
7945
7946
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7946
7947
|
}, includeTransactions, blockTag>) => import("viem").WatchBlocksReturnType;
|
|
7947
|
-
watchContractEvent: <const abi extends import("
|
|
7948
|
-
watchEvent: <const abiEvent extends import("
|
|
7948
|
+
watchContractEvent: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi, eventName, strict, HttpTransport>) => import("viem").WatchContractEventReturnType;
|
|
7949
|
+
watchEvent: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import("viem").WatchEventParameters<abiEvent, abiEvents, strict, HttpTransport>) => import("viem").WatchEventReturnType;
|
|
7949
7950
|
watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<HttpTransport>) => import("viem").WatchPendingTransactionsReturnType;
|
|
7950
7951
|
extend: <const client extends {
|
|
7951
7952
|
[x: string]: unknown;
|
|
@@ -8030,7 +8031,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8030
8031
|
};
|
|
8031
8032
|
rpcUrls: {
|
|
8032
8033
|
readonly default: {
|
|
8033
|
-
readonly http: readonly ["https://
|
|
8034
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8034
8035
|
};
|
|
8035
8036
|
};
|
|
8036
8037
|
sourceId?: number | undefined;
|
|
@@ -8172,7 +8173,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8172
8173
|
};
|
|
8173
8174
|
rpcUrls: {
|
|
8174
8175
|
readonly default: {
|
|
8175
|
-
readonly http: readonly ["https://
|
|
8176
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8176
8177
|
};
|
|
8177
8178
|
};
|
|
8178
8179
|
sourceId?: number | undefined;
|
|
@@ -8314,7 +8315,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8314
8315
|
};
|
|
8315
8316
|
rpcUrls: {
|
|
8316
8317
|
readonly default: {
|
|
8317
|
-
readonly http: readonly ["https://
|
|
8318
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8318
8319
|
};
|
|
8319
8320
|
};
|
|
8320
8321
|
sourceId?: number | undefined;
|
|
@@ -8456,7 +8457,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8456
8457
|
};
|
|
8457
8458
|
rpcUrls: {
|
|
8458
8459
|
readonly default: {
|
|
8459
|
-
readonly http: readonly ["https://
|
|
8460
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8460
8461
|
};
|
|
8461
8462
|
};
|
|
8462
8463
|
sourceId?: number | undefined;
|
|
@@ -8598,7 +8599,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8598
8599
|
};
|
|
8599
8600
|
rpcUrls: {
|
|
8600
8601
|
readonly default: {
|
|
8601
|
-
readonly http: readonly ["https://
|
|
8602
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8602
8603
|
};
|
|
8603
8604
|
};
|
|
8604
8605
|
sourceId?: number | undefined;
|
|
@@ -8740,7 +8741,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
8740
8741
|
};
|
|
8741
8742
|
rpcUrls: {
|
|
8742
8743
|
readonly default: {
|
|
8743
|
-
readonly http: readonly ["https://
|
|
8744
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8744
8745
|
};
|
|
8745
8746
|
};
|
|
8746
8747
|
sourceId?: number | undefined;
|
|
@@ -8888,7 +8889,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8888
8889
|
};
|
|
8889
8890
|
rpcUrls: {
|
|
8890
8891
|
readonly default: {
|
|
8891
|
-
readonly http: readonly ["https://
|
|
8892
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
8892
8893
|
};
|
|
8893
8894
|
};
|
|
8894
8895
|
sourceId?: number | undefined;
|
|
@@ -9030,7 +9031,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9030
9031
|
};
|
|
9031
9032
|
rpcUrls: {
|
|
9032
9033
|
readonly default: {
|
|
9033
|
-
readonly http: readonly ["https://
|
|
9034
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
9034
9035
|
};
|
|
9035
9036
|
};
|
|
9036
9037
|
sourceId?: number | undefined;
|
|
@@ -9175,7 +9176,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9175
9176
|
};
|
|
9176
9177
|
rpcUrls: {
|
|
9177
9178
|
readonly default: {
|
|
9178
|
-
readonly http: readonly ["https://
|
|
9179
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
9179
9180
|
};
|
|
9180
9181
|
};
|
|
9181
9182
|
sourceId?: number | undefined;
|
|
@@ -9320,7 +9321,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9320
9321
|
};
|
|
9321
9322
|
rpcUrls: {
|
|
9322
9323
|
readonly default: {
|
|
9323
|
-
readonly http: readonly ["https://
|
|
9324
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
9324
9325
|
};
|
|
9325
9326
|
};
|
|
9326
9327
|
sourceId?: number | undefined;
|
|
@@ -9470,7 +9471,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9470
9471
|
};
|
|
9471
9472
|
rpcUrls: {
|
|
9472
9473
|
readonly default: {
|
|
9473
|
-
readonly http: readonly ["https://
|
|
9474
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
9474
9475
|
};
|
|
9475
9476
|
};
|
|
9476
9477
|
sourceId?: number | undefined;
|
|
@@ -9586,7 +9587,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9586
9587
|
}, {
|
|
9587
9588
|
Method: "eth_coinbase";
|
|
9588
9589
|
Parameters?: undefined;
|
|
9589
|
-
ReturnType: import("
|
|
9590
|
+
ReturnType: import("abitype").Address;
|
|
9590
9591
|
}, {
|
|
9591
9592
|
Method: "eth_estimateGas";
|
|
9592
9593
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
@@ -9601,7 +9602,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9601
9602
|
ReturnType: import("viem").Quantity;
|
|
9602
9603
|
}, {
|
|
9603
9604
|
Method: "eth_getBalance";
|
|
9604
|
-
Parameters: [address: import("
|
|
9605
|
+
Parameters: [address: import("abitype").Address, block: import("viem").RpcBlockNumber | import("viem").BlockTag | import("viem").RpcBlockIdentifier];
|
|
9605
9606
|
ReturnType: import("viem").Quantity;
|
|
9606
9607
|
}, {
|
|
9607
9608
|
Method: "eth_getBlockByHash";
|
|
@@ -9621,7 +9622,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9621
9622
|
ReturnType: import("viem").Quantity;
|
|
9622
9623
|
}, {
|
|
9623
9624
|
Method: "eth_getCode";
|
|
9624
|
-
Parameters: [address: import("
|
|
9625
|
+
Parameters: [address: import("abitype").Address, block: import("viem").RpcBlockNumber | import("viem").BlockTag | import("viem").RpcBlockIdentifier];
|
|
9625
9626
|
ReturnType: import("viem").Hex;
|
|
9626
9627
|
}, {
|
|
9627
9628
|
Method: "eth_getFilterChanges";
|
|
@@ -9634,7 +9635,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9634
9635
|
}, {
|
|
9635
9636
|
Method: "eth_getLogs";
|
|
9636
9637
|
Parameters: [{
|
|
9637
|
-
address?: import("
|
|
9638
|
+
address?: import("abitype").Address | import("abitype").Address[] | undefined;
|
|
9638
9639
|
topics?: import("viem").LogTopic[] | undefined;
|
|
9639
9640
|
} & ({
|
|
9640
9641
|
fromBlock?: import("viem").RpcBlockNumber | import("viem").BlockTag | undefined;
|
|
@@ -9648,11 +9649,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9648
9649
|
ReturnType: import("viem").RpcLog[];
|
|
9649
9650
|
}, {
|
|
9650
9651
|
Method: "eth_getProof";
|
|
9651
|
-
Parameters: [address: import("
|
|
9652
|
+
Parameters: [address: import("abitype").Address, storageKeys: import("viem").Hash[], block: import("viem").RpcBlockNumber | import("viem").BlockTag];
|
|
9652
9653
|
ReturnType: import("viem").RpcProof;
|
|
9653
9654
|
}, {
|
|
9654
9655
|
Method: "eth_getStorageAt";
|
|
9655
|
-
Parameters: [address: import("
|
|
9656
|
+
Parameters: [address: import("abitype").Address, index: import("viem").Quantity, block: import("viem").RpcBlockNumber | import("viem").BlockTag | import("viem").RpcBlockIdentifier];
|
|
9656
9657
|
ReturnType: import("viem").Hex;
|
|
9657
9658
|
}, {
|
|
9658
9659
|
Method: "eth_getTransactionByBlockHashAndIndex";
|
|
@@ -9668,7 +9669,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9668
9669
|
ReturnType: import("viem").RpcTransaction | null;
|
|
9669
9670
|
}, {
|
|
9670
9671
|
Method: "eth_getTransactionCount";
|
|
9671
|
-
Parameters: [address: import("
|
|
9672
|
+
Parameters: [address: import("abitype").Address, block: import("viem").RpcBlockNumber | import("viem").BlockTag | import("viem").RpcBlockIdentifier];
|
|
9672
9673
|
ReturnType: import("viem").Quantity;
|
|
9673
9674
|
}, {
|
|
9674
9675
|
Method: "eth_getTransactionReceipt";
|
|
@@ -9703,7 +9704,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9703
9704
|
Parameters: [filter: {
|
|
9704
9705
|
fromBlock?: import("viem").RpcBlockNumber | import("viem").BlockTag | undefined;
|
|
9705
9706
|
toBlock?: import("viem").RpcBlockNumber | import("viem").BlockTag | undefined;
|
|
9706
|
-
address?: import("
|
|
9707
|
+
address?: import("abitype").Address | import("abitype").Address[] | undefined;
|
|
9707
9708
|
topics?: import("viem").LogTopic[] | undefined;
|
|
9708
9709
|
}];
|
|
9709
9710
|
ReturnType: import("viem").Quantity;
|
|
@@ -9726,7 +9727,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9726
9727
|
}, {
|
|
9727
9728
|
Method: "eth_accounts";
|
|
9728
9729
|
Parameters?: undefined;
|
|
9729
|
-
ReturnType: import("
|
|
9730
|
+
ReturnType: import("abitype").Address[];
|
|
9730
9731
|
}, {
|
|
9731
9732
|
Method: "eth_chainId";
|
|
9732
9733
|
Parameters?: undefined;
|
|
@@ -9738,7 +9739,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9738
9739
|
}, {
|
|
9739
9740
|
Method: "eth_requestAccounts";
|
|
9740
9741
|
Parameters?: undefined;
|
|
9741
|
-
ReturnType: import("
|
|
9742
|
+
ReturnType: import("abitype").Address[];
|
|
9742
9743
|
}, {
|
|
9743
9744
|
Method: "eth_sendTransaction";
|
|
9744
9745
|
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
@@ -9749,7 +9750,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9749
9750
|
ReturnType: import("viem").Hash;
|
|
9750
9751
|
}, {
|
|
9751
9752
|
Method: "eth_sign";
|
|
9752
|
-
Parameters: [address: import("
|
|
9753
|
+
Parameters: [address: import("abitype").Address, data: import("viem").Hex];
|
|
9753
9754
|
ReturnType: import("viem").Hex;
|
|
9754
9755
|
}, {
|
|
9755
9756
|
Method: "eth_signTransaction";
|
|
@@ -9757,7 +9758,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9757
9758
|
ReturnType: import("viem").Hex;
|
|
9758
9759
|
}, {
|
|
9759
9760
|
Method: "eth_signTypedData_v4";
|
|
9760
|
-
Parameters: [address: import("
|
|
9761
|
+
Parameters: [address: import("abitype").Address, message: string];
|
|
9761
9762
|
ReturnType: import("viem").Hex;
|
|
9762
9763
|
}, {
|
|
9763
9764
|
Method: "eth_syncing";
|
|
@@ -9765,7 +9766,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9765
9766
|
ReturnType: import("viem").NetworkSync | false;
|
|
9766
9767
|
}, {
|
|
9767
9768
|
Method: "personal_sign";
|
|
9768
|
-
Parameters: [data: import("viem").Hex, address: import("
|
|
9769
|
+
Parameters: [data: import("viem").Hex, address: import("abitype").Address];
|
|
9769
9770
|
ReturnType: import("viem").Hex;
|
|
9770
9771
|
}, {
|
|
9771
9772
|
Method: "wallet_addEthereumChain";
|
|
@@ -9777,7 +9778,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9777
9778
|
ReturnType: import("viem").WalletGetCallsStatusReturnType;
|
|
9778
9779
|
}, {
|
|
9779
9780
|
Method: "wallet_getCapabilities";
|
|
9780
|
-
Parameters?: [import("
|
|
9781
|
+
Parameters?: [import("abitype").Address];
|
|
9781
9782
|
ReturnType: import("viem").Prettify<import("viem").WalletCapabilitiesRecord>;
|
|
9782
9783
|
}, {
|
|
9783
9784
|
Method: "wallet_getPermissions";
|
|
@@ -9823,7 +9824,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9823
9824
|
ReturnType: import("viem").Hex;
|
|
9824
9825
|
}, {
|
|
9825
9826
|
Method: "eth_estimateUserOperationGas";
|
|
9826
|
-
Parameters: [userOperation: import("viem").RpcUserOperation, entrypoint: import("
|
|
9827
|
+
Parameters: [userOperation: import("viem").RpcUserOperation, entrypoint: import("abitype").Address] | [userOperation: import("viem").RpcUserOperation, entrypoint: import("abitype").Address, stateOverrideSet: import("viem").RpcStateOverride];
|
|
9827
9828
|
ReturnType: import("viem").RpcEstimateUserOperationGasReturnType;
|
|
9828
9829
|
}, {
|
|
9829
9830
|
Method: "eth_getUserOperationByHash";
|
|
@@ -9835,19 +9836,19 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9835
9836
|
ReturnType: import("viem").RpcUserOperationReceipt | null;
|
|
9836
9837
|
}, {
|
|
9837
9838
|
Method: "eth_sendUserOperation";
|
|
9838
|
-
Parameters: [userOperation: import("viem").RpcUserOperation, entrypoint: import("
|
|
9839
|
+
Parameters: [userOperation: import("viem").RpcUserOperation, entrypoint: import("abitype").Address];
|
|
9839
9840
|
ReturnType: import("viem").Hash;
|
|
9840
9841
|
}, {
|
|
9841
9842
|
Method: "eth_supportedEntryPoints";
|
|
9842
9843
|
Parameters?: undefined;
|
|
9843
|
-
ReturnType: readonly import("
|
|
9844
|
+
ReturnType: readonly import("abitype").Address[];
|
|
9844
9845
|
}, {
|
|
9845
9846
|
Method: "pm_getPaymasterStubData";
|
|
9846
|
-
Parameters?: [userOperation: import("viem").OneOf<import("viem").PartialBy<Pick<import("viem").RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import("viem").PartialBy<Pick<import("viem").RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import("
|
|
9847
|
+
Parameters?: [userOperation: import("viem").OneOf<import("viem").PartialBy<Pick<import("viem").RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import("viem").PartialBy<Pick<import("viem").RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import("abitype").Address, chainId: import("viem").Hex, context: unknown];
|
|
9847
9848
|
ReturnType: import("viem").OneOf<{
|
|
9848
9849
|
paymasterAndData: import("viem").Hex;
|
|
9849
9850
|
} | {
|
|
9850
|
-
paymaster: import("
|
|
9851
|
+
paymaster: import("abitype").Address;
|
|
9851
9852
|
paymasterData: import("viem").Hex;
|
|
9852
9853
|
paymasterVerificationGasLimit: import("viem").Hex;
|
|
9853
9854
|
paymasterPostOpGasLimit: import("viem").Hex;
|
|
@@ -9860,11 +9861,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9860
9861
|
};
|
|
9861
9862
|
}, {
|
|
9862
9863
|
Method: "pm_getPaymasterData";
|
|
9863
|
-
Parameters?: [userOperation: Pick<import("viem").RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import("viem").RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import("
|
|
9864
|
+
Parameters?: [userOperation: Pick<import("viem").RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import("viem").RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import("abitype").Address, chainId: import("viem").Hex, context: unknown];
|
|
9864
9865
|
ReturnType: import("viem").OneOf<{
|
|
9865
9866
|
paymasterAndData: import("viem").Hex;
|
|
9866
9867
|
} | {
|
|
9867
|
-
paymaster: import("
|
|
9868
|
+
paymaster: import("abitype").Address;
|
|
9868
9869
|
paymasterData: import("viem").Hex;
|
|
9869
9870
|
paymasterVerificationGasLimit: import("viem").Hex;
|
|
9870
9871
|
paymasterPostOpGasLimit: import("viem").Hex;
|
|
@@ -9959,7 +9960,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9959
9960
|
};
|
|
9960
9961
|
rpcUrls: {
|
|
9961
9962
|
readonly default: {
|
|
9962
|
-
readonly http: readonly ["https://
|
|
9963
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
9963
9964
|
};
|
|
9964
9965
|
};
|
|
9965
9966
|
sourceId?: number | undefined;
|
|
@@ -10101,7 +10102,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
10101
10102
|
};
|
|
10102
10103
|
rpcUrls: {
|
|
10103
10104
|
readonly default: {
|
|
10104
|
-
readonly http: readonly ["https://
|
|
10105
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
10105
10106
|
};
|
|
10106
10107
|
};
|
|
10107
10108
|
sourceId?: number | undefined;
|
|
@@ -10243,7 +10244,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
10243
10244
|
};
|
|
10244
10245
|
rpcUrls: {
|
|
10245
10246
|
readonly default: {
|
|
10246
|
-
readonly http: readonly ["https://
|
|
10247
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
10247
10248
|
};
|
|
10248
10249
|
};
|
|
10249
10250
|
sourceId?: number | undefined;
|
|
@@ -10399,7 +10400,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
10399
10400
|
};
|
|
10400
10401
|
rpcUrls: {
|
|
10401
10402
|
readonly default: {
|
|
10402
|
-
readonly http: readonly ["https://
|
|
10403
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
10403
10404
|
};
|
|
10404
10405
|
};
|
|
10405
10406
|
sourceId?: number | undefined;
|
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
package/dist/constants.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export declare const L1ChainTestnet: {
|
|
|
71
71
|
};
|
|
72
72
|
rpcUrls: {
|
|
73
73
|
readonly default: {
|
|
74
|
-
readonly http: readonly ["https://
|
|
74
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
77
|
sourceId?: number | undefined;
|
|
@@ -315,7 +315,7 @@ export declare const SupportedClientChains: readonly [{
|
|
|
315
315
|
};
|
|
316
316
|
rpcUrls: {
|
|
317
317
|
readonly default: {
|
|
318
|
-
readonly http: readonly ["https://
|
|
318
|
+
readonly http: readonly ["https://rpc2.sepolia.org"];
|
|
319
319
|
};
|
|
320
320
|
};
|
|
321
321
|
sourceId?: number | undefined;
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,gBAAgB,uBAAiC,CAAA;AAC9D,eAAO,MAAM,yBAAyB,YAAsB,CAAA;AAE5D,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAkBqO,MAAgB;;yBAAyF,MAAgB,qCAAqC,MAAgB;CAlBzY,CAAA;AAC9B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,gBAAgB,uBAAiC,CAAA;AAC9D,eAAO,MAAM,yBAAyB,YAAsB,CAAA;AAE5D,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAkBqO,MAAgB;;yBAAyF,MAAgB,qCAAqC,MAAgB;CAlBzY,CAAA;AAC9B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAiBuO,MAAgB;;yBAAyF,MAAgB,qCAAqC,MAAgB;CAjB3Y,CAAA;AACrC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAemB,MAAgB;;yBACc,MAAgB,qCAAqC,MAAgB;CAhB3G,CAAA;AAC/B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAe1B,MAAgB;;yBAAyF,MAAgB,qCAAqC,MAAgB;CAflI,CAAA;AAE7C,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAU,CAAA;AAE/B,eAAO,MAAM,sBAAsB,0HAOtB,CAAA;AACb,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAC3E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8D,CAAA;AAChG,MAAM,MAAM,qBAAqB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAA"}
|
|
@@ -27,7 +27,7 @@ declare const BuildMockProviderStateArgs: z.ZodUnion<readonly [z.ZodObject<z.obj
|
|
|
27
27
|
}>, z.ZodObject<{
|
|
28
28
|
type: z.ZodLiteral<"provided">;
|
|
29
29
|
/** If the specified connection is with a multisig, this is the multisig address */
|
|
30
|
-
address: z.ZodType
|
|
30
|
+
address: z.ZodType<string, z.ZodTypeDef, string>;
|
|
31
31
|
chain: z.ZodDefault<z.ZodOptional<z.ZodReadonly<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<11155111>, z.ZodLiteral<42161>, z.ZodLiteral<421614>]>>>>;
|
|
32
32
|
connector: z.ZodUnion<readonly [z.ZodObject<{
|
|
33
33
|
type: z.ZodUnion<readonly [z.ZodLiteral<"injected">, z.ZodLiteral<"coinbaseWallet">, z.ZodLiteral<"walletConnect">]>;
|
|
@@ -37,36 +37,36 @@ declare const BuildMockProviderStateArgs: z.ZodUnion<readonly [z.ZodObject<z.obj
|
|
|
37
37
|
type: "injected" | "coinbaseWallet" | "walletConnect";
|
|
38
38
|
}>, z.ZodObject<{
|
|
39
39
|
type: z.ZodLiteral<"multisig">;
|
|
40
|
-
eoa: z.ZodType
|
|
40
|
+
eoa: z.ZodType<string, z.ZodTypeDef, string>;
|
|
41
41
|
network: z.ZodDefault<z.ZodOptional<z.ZodReadonly<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<11155111>, z.ZodLiteral<42161>]>>>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
type: "multisig";
|
|
44
44
|
network: 1 | 11155111 | 42161;
|
|
45
|
-
eoa:
|
|
45
|
+
eoa: string;
|
|
46
46
|
}, {
|
|
47
47
|
type: "multisig";
|
|
48
|
-
eoa:
|
|
48
|
+
eoa: string;
|
|
49
49
|
network?: 1 | 11155111 | 42161 | undefined;
|
|
50
50
|
}>]>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
type: "provided";
|
|
53
53
|
chain: 1 | 11155111 | 42161 | 421614;
|
|
54
|
-
address:
|
|
54
|
+
address: string;
|
|
55
55
|
connector: {
|
|
56
56
|
type: "injected" | "coinbaseWallet" | "walletConnect";
|
|
57
57
|
} | {
|
|
58
58
|
type: "multisig";
|
|
59
59
|
network: 1 | 11155111 | 42161;
|
|
60
|
-
eoa:
|
|
60
|
+
eoa: string;
|
|
61
61
|
};
|
|
62
62
|
}, {
|
|
63
63
|
type: "provided";
|
|
64
|
-
address:
|
|
64
|
+
address: string;
|
|
65
65
|
connector: {
|
|
66
66
|
type: "injected" | "coinbaseWallet" | "walletConnect";
|
|
67
67
|
} | {
|
|
68
68
|
type: "multisig";
|
|
69
|
-
eoa:
|
|
69
|
+
eoa: string;
|
|
70
70
|
network?: 1 | 11155111 | 42161 | undefined;
|
|
71
71
|
};
|
|
72
72
|
chain?: 1 | 11155111 | 42161 | 421614 | undefined;
|
|
@@ -79,13 +79,13 @@ declare const BuildMockProviderStateArgs: z.ZodUnion<readonly [z.ZodObject<z.obj
|
|
|
79
79
|
} | {
|
|
80
80
|
type: "provided";
|
|
81
81
|
chain: 1 | 11155111 | 42161 | 421614;
|
|
82
|
-
address:
|
|
82
|
+
address: string;
|
|
83
83
|
connector: {
|
|
84
84
|
type: "injected" | "coinbaseWallet" | "walletConnect";
|
|
85
85
|
} | {
|
|
86
86
|
type: "multisig";
|
|
87
87
|
network: 1 | 11155111 | 42161;
|
|
88
|
-
eoa:
|
|
88
|
+
eoa: string;
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
91
|
}, {
|
|
@@ -95,12 +95,12 @@ declare const BuildMockProviderStateArgs: z.ZodUnion<readonly [z.ZodObject<z.obj
|
|
|
95
95
|
type: "generated";
|
|
96
96
|
} | {
|
|
97
97
|
type: "provided";
|
|
98
|
-
address:
|
|
98
|
+
address: string;
|
|
99
99
|
connector: {
|
|
100
100
|
type: "injected" | "coinbaseWallet" | "walletConnect";
|
|
101
101
|
} | {
|
|
102
102
|
type: "multisig";
|
|
103
|
-
eoa:
|
|
103
|
+
eoa: string;
|
|
104
104
|
network?: 1 | 11155111 | 42161 | undefined;
|
|
105
105
|
};
|
|
106
106
|
chain?: 1 | 11155111 | 42161 | 421614 | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edgeandnode/graph-auth-kit",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Wallet authentication connect kit in The Graph suite of applications",
|
|
6
6
|
"author": "Edge & Node",
|
|
@@ -31,48 +31,47 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"sideEffects": false,
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@ethersproject/abstract-signer": "^5.7.0",
|
|
36
|
+
"@safe-global/api-kit": "2.5.1",
|
|
37
|
+
"@safe-global/protocol-kit": "5.0.1",
|
|
38
|
+
"@safe-global/safe-core-sdk-types": "5.1.0",
|
|
39
|
+
"@wagmi/core": "2.13.8",
|
|
40
|
+
"zod": "^3.23.8"
|
|
41
|
+
},
|
|
34
42
|
"peerDependencies": {
|
|
35
|
-
"@emotion/react": "^11
|
|
36
|
-
"@tanstack/react-query": "^5
|
|
43
|
+
"@emotion/react": "^11",
|
|
44
|
+
"@tanstack/react-query": "^5",
|
|
37
45
|
"ethers": "5.7.2",
|
|
38
|
-
"react": "^18
|
|
39
|
-
"react-dom": "^18
|
|
46
|
+
"react": "^18",
|
|
47
|
+
"react-dom": "^18",
|
|
40
48
|
"theme-ui": "^0.16",
|
|
41
49
|
"viem": "^2.21",
|
|
42
50
|
"wagmi": "^2.12",
|
|
43
|
-
"@edgeandnode/common": "^6.24.
|
|
44
|
-
"@edgeandnode/gds": "^5.31.
|
|
45
|
-
"@edgeandnode/go": "^6.55.
|
|
51
|
+
"@edgeandnode/common": "^6.24.2",
|
|
52
|
+
"@edgeandnode/gds": "^5.31.5",
|
|
53
|
+
"@edgeandnode/go": "^6.55.2"
|
|
46
54
|
},
|
|
47
55
|
"devDependencies": {
|
|
48
56
|
"@emotion/react": "^11.13",
|
|
49
57
|
"@ethersproject/abstract-provider": "^5.7.0",
|
|
50
58
|
"@ethersproject/properties": "^5.7.0",
|
|
51
|
-
"@tanstack/react-query": "5.
|
|
52
|
-
"@types/react": "^18.3.
|
|
59
|
+
"@tanstack/react-query": "^5.59.0",
|
|
60
|
+
"@types/react": "^18.3.11",
|
|
53
61
|
"@types/react-dom": "^18.3.0",
|
|
54
|
-
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
55
62
|
"autoprefixer": "^10.4.20",
|
|
56
63
|
"ethers": "5.7.2",
|
|
57
|
-
"postcss": "^8.4.
|
|
64
|
+
"postcss": "^8.4.47",
|
|
58
65
|
"react": "^18.3.1",
|
|
59
66
|
"react-dom": "^18.3.1",
|
|
60
|
-
"tailwindcss": "^3.4.
|
|
67
|
+
"tailwindcss": "^3.4.13",
|
|
61
68
|
"ts-node": "^10.9.2",
|
|
62
|
-
"viem": "
|
|
63
|
-
"wagmi": "
|
|
64
|
-
"@edgeandnode/common": "^6.24.
|
|
65
|
-
"@edgeandnode/gds": "^5.31.
|
|
66
|
-
"@edgeandnode/go": "^6.55.
|
|
67
|
-
"@edgeandnode/test-utils": "^2.0.
|
|
68
|
-
},
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
71
|
-
"@safe-global/api-kit": "2.4.3",
|
|
72
|
-
"@safe-global/protocol-kit": "4.0.3",
|
|
73
|
-
"@safe-global/safe-core-sdk-types": "5.0.3",
|
|
74
|
-
"@wagmi/core": "^2.13.4",
|
|
75
|
-
"zod": "^3.23.8"
|
|
69
|
+
"viem": "2.21.19",
|
|
70
|
+
"wagmi": "2.12.17",
|
|
71
|
+
"@edgeandnode/common": "^6.24.2",
|
|
72
|
+
"@edgeandnode/gds": "^5.31.5",
|
|
73
|
+
"@edgeandnode/go": "^6.55.2",
|
|
74
|
+
"@edgeandnode/test-utils": "^2.0.1"
|
|
76
75
|
},
|
|
77
76
|
"scripts": {
|
|
78
77
|
"build": "vite build && tsc -P ./tsconfig.build.json --emitDeclarationOnly",
|