@aboutcircles/sdk-runner 0.1.3 → 0.1.5
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/index.js +1027 -193
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -870,7 +870,7 @@ function size(value) {
|
|
|
870
870
|
var init_size = () => {};
|
|
871
871
|
|
|
872
872
|
// ../../node_modules/viem/_esm/errors/version.js
|
|
873
|
-
var version2 = "2.
|
|
873
|
+
var version2 = "2.40.3";
|
|
874
874
|
|
|
875
875
|
// ../../node_modules/viem/_esm/errors/base.js
|
|
876
876
|
function walk(err, fn) {
|
|
@@ -3211,18 +3211,11 @@ function prettyPrint(args) {
|
|
|
3211
3211
|
return entries.map(([key, value]) => ` ${`${key}:`.padEnd(maxLength + 1)} ${value}`).join(`
|
|
3212
3212
|
`);
|
|
3213
3213
|
}
|
|
3214
|
-
var
|
|
3214
|
+
var InvalidSerializableTransactionError, TransactionExecutionError, TransactionNotFoundError, TransactionReceiptNotFoundError, TransactionReceiptRevertedError, WaitForTransactionReceiptTimeoutError;
|
|
3215
3215
|
var init_transaction = __esm(() => {
|
|
3216
|
+
init_formatEther();
|
|
3217
|
+
init_formatGwei();
|
|
3216
3218
|
init_base();
|
|
3217
|
-
FeeConflictError = class FeeConflictError extends BaseError2 {
|
|
3218
|
-
constructor() {
|
|
3219
|
-
super([
|
|
3220
|
-
"Cannot specify both a `gasPrice` and a `maxFeePerGas`/`maxPriorityFeePerGas`.",
|
|
3221
|
-
"Use `maxFeePerGas`/`maxPriorityFeePerGas` for EIP-1559 compatible networks, and `gasPrice` for others."
|
|
3222
|
-
].join(`
|
|
3223
|
-
`), { name: "FeeConflictError" });
|
|
3224
|
-
}
|
|
3225
|
-
};
|
|
3226
3219
|
InvalidSerializableTransactionError = class InvalidSerializableTransactionError extends BaseError2 {
|
|
3227
3220
|
constructor({ transaction }) {
|
|
3228
3221
|
super("Cannot infer a transaction type from provided transaction.", {
|
|
@@ -3244,6 +3237,39 @@ var init_transaction = __esm(() => {
|
|
|
3244
3237
|
});
|
|
3245
3238
|
}
|
|
3246
3239
|
};
|
|
3240
|
+
TransactionExecutionError = class TransactionExecutionError extends BaseError2 {
|
|
3241
|
+
constructor(cause, { account, docsPath: docsPath3, chain, data, gas, gasPrice, maxFeePerGas, maxPriorityFeePerGas, nonce, to, value }) {
|
|
3242
|
+
const prettyArgs = prettyPrint({
|
|
3243
|
+
chain: chain && `${chain?.name} (id: ${chain?.id})`,
|
|
3244
|
+
from: account?.address,
|
|
3245
|
+
to,
|
|
3246
|
+
value: typeof value !== "undefined" && `${formatEther(value)} ${chain?.nativeCurrency?.symbol || "ETH"}`,
|
|
3247
|
+
data,
|
|
3248
|
+
gas,
|
|
3249
|
+
gasPrice: typeof gasPrice !== "undefined" && `${formatGwei(gasPrice)} gwei`,
|
|
3250
|
+
maxFeePerGas: typeof maxFeePerGas !== "undefined" && `${formatGwei(maxFeePerGas)} gwei`,
|
|
3251
|
+
maxPriorityFeePerGas: typeof maxPriorityFeePerGas !== "undefined" && `${formatGwei(maxPriorityFeePerGas)} gwei`,
|
|
3252
|
+
nonce
|
|
3253
|
+
});
|
|
3254
|
+
super(cause.shortMessage, {
|
|
3255
|
+
cause,
|
|
3256
|
+
docsPath: docsPath3,
|
|
3257
|
+
metaMessages: [
|
|
3258
|
+
...cause.metaMessages ? [...cause.metaMessages, " "] : [],
|
|
3259
|
+
"Request Arguments:",
|
|
3260
|
+
prettyArgs
|
|
3261
|
+
].filter(Boolean),
|
|
3262
|
+
name: "TransactionExecutionError"
|
|
3263
|
+
});
|
|
3264
|
+
Object.defineProperty(this, "cause", {
|
|
3265
|
+
enumerable: true,
|
|
3266
|
+
configurable: true,
|
|
3267
|
+
writable: true,
|
|
3268
|
+
value: undefined
|
|
3269
|
+
});
|
|
3270
|
+
this.cause = cause;
|
|
3271
|
+
}
|
|
3272
|
+
};
|
|
3247
3273
|
TransactionNotFoundError = class TransactionNotFoundError extends BaseError2 {
|
|
3248
3274
|
constructor({ blockHash, blockNumber, blockTag, hash: hash2, index }) {
|
|
3249
3275
|
let identifier = "Transaction";
|
|
@@ -3617,8 +3643,15 @@ var init_request = __esm(() => {
|
|
|
3617
3643
|
writable: true,
|
|
3618
3644
|
value: undefined
|
|
3619
3645
|
});
|
|
3646
|
+
Object.defineProperty(this, "url", {
|
|
3647
|
+
enumerable: true,
|
|
3648
|
+
configurable: true,
|
|
3649
|
+
writable: true,
|
|
3650
|
+
value: undefined
|
|
3651
|
+
});
|
|
3620
3652
|
this.code = error.code;
|
|
3621
3653
|
this.data = error.data;
|
|
3654
|
+
this.url = url;
|
|
3622
3655
|
}
|
|
3623
3656
|
};
|
|
3624
3657
|
TimeoutError = class TimeoutError extends BaseError2 {
|
|
@@ -3628,6 +3661,13 @@ var init_request = __esm(() => {
|
|
|
3628
3661
|
metaMessages: [`URL: ${getUrl(url)}`, `Request body: ${stringify(body)}`],
|
|
3629
3662
|
name: "TimeoutError"
|
|
3630
3663
|
});
|
|
3664
|
+
Object.defineProperty(this, "url", {
|
|
3665
|
+
enumerable: true,
|
|
3666
|
+
configurable: true,
|
|
3667
|
+
writable: true,
|
|
3668
|
+
value: undefined
|
|
3669
|
+
});
|
|
3670
|
+
this.url = url;
|
|
3631
3671
|
}
|
|
3632
3672
|
};
|
|
3633
3673
|
});
|
|
@@ -6894,14 +6934,12 @@ var init_number = __esm(() => {
|
|
|
6894
6934
|
|
|
6895
6935
|
// ../../node_modules/viem/_esm/utils/transaction/assertRequest.js
|
|
6896
6936
|
function assertRequest(args) {
|
|
6897
|
-
const { account: account_,
|
|
6937
|
+
const { account: account_, maxFeePerGas, maxPriorityFeePerGas, to } = args;
|
|
6898
6938
|
const account = account_ ? parseAccount(account_) : undefined;
|
|
6899
6939
|
if (account && !isAddress(account.address))
|
|
6900
6940
|
throw new InvalidAddressError({ address: account.address });
|
|
6901
6941
|
if (to && !isAddress(to))
|
|
6902
6942
|
throw new InvalidAddressError({ address: to });
|
|
6903
|
-
if (typeof gasPrice !== "undefined" && (typeof maxFeePerGas !== "undefined" || typeof maxPriorityFeePerGas !== "undefined"))
|
|
6904
|
-
throw new FeeConflictError;
|
|
6905
6943
|
if (maxFeePerGas && maxFeePerGas > maxUint256)
|
|
6906
6944
|
throw new FeeCapTooHighError({ maxFeePerGas });
|
|
6907
6945
|
if (maxPriorityFeePerGas && maxFeePerGas && maxPriorityFeePerGas > maxFeePerGas)
|
|
@@ -6911,7 +6949,6 @@ var init_assertRequest = __esm(() => {
|
|
|
6911
6949
|
init_number();
|
|
6912
6950
|
init_address();
|
|
6913
6951
|
init_node();
|
|
6914
|
-
init_transaction();
|
|
6915
6952
|
init_isAddress();
|
|
6916
6953
|
});
|
|
6917
6954
|
|
|
@@ -8673,7 +8710,7 @@ var init_call = __esm(() => {
|
|
|
8673
8710
|
var require_version = __commonJS((exports) => {
|
|
8674
8711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8675
8712
|
exports.version = undefined;
|
|
8676
|
-
exports.version = "1.
|
|
8713
|
+
exports.version = "1.2.0";
|
|
8677
8714
|
});
|
|
8678
8715
|
|
|
8679
8716
|
// ../../node_modules/abitype/dist/cjs/errors.js
|
|
@@ -9224,7 +9261,7 @@ var require_cache = __commonJS((exports) => {
|
|
|
9224
9261
|
}
|
|
9225
9262
|
if (type)
|
|
9226
9263
|
return `${type}:${param}${structKey}`;
|
|
9227
|
-
return param
|
|
9264
|
+
return `${param}${structKey}`;
|
|
9228
9265
|
}
|
|
9229
9266
|
exports.parameterCache = new Map([
|
|
9230
9267
|
["address", { type: "address" }],
|
|
@@ -25685,7 +25722,7 @@ var require_size = __commonJS((exports) => {
|
|
|
25685
25722
|
var require_version3 = __commonJS((exports) => {
|
|
25686
25723
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25687
25724
|
exports.version = undefined;
|
|
25688
|
-
exports.version = "2.
|
|
25725
|
+
exports.version = "2.40.3";
|
|
25689
25726
|
});
|
|
25690
25727
|
|
|
25691
25728
|
// ../../node_modules/viem/_cjs/errors/base.js
|
|
@@ -28646,7 +28683,7 @@ var require_transaction = __commonJS((exports) => {
|
|
|
28646
28683
|
`);
|
|
28647
28684
|
}
|
|
28648
28685
|
|
|
28649
|
-
class
|
|
28686
|
+
class FeeConflictError extends base_js_1.BaseError {
|
|
28650
28687
|
constructor() {
|
|
28651
28688
|
super([
|
|
28652
28689
|
"Cannot specify both a `gasPrice` and a `maxFeePerGas`/`maxPriorityFeePerGas`.",
|
|
@@ -28655,7 +28692,7 @@ var require_transaction = __commonJS((exports) => {
|
|
|
28655
28692
|
`), { name: "FeeConflictError" });
|
|
28656
28693
|
}
|
|
28657
28694
|
}
|
|
28658
|
-
exports.FeeConflictError =
|
|
28695
|
+
exports.FeeConflictError = FeeConflictError;
|
|
28659
28696
|
|
|
28660
28697
|
class InvalidLegacyVError extends base_js_1.BaseError {
|
|
28661
28698
|
constructor({ v }) {
|
|
@@ -28740,7 +28777,7 @@ var require_transaction = __commonJS((exports) => {
|
|
|
28740
28777
|
}
|
|
28741
28778
|
exports.InvalidStorageKeySizeError = InvalidStorageKeySizeError;
|
|
28742
28779
|
|
|
28743
|
-
class
|
|
28780
|
+
class TransactionExecutionError2 extends base_js_1.BaseError {
|
|
28744
28781
|
constructor(cause, { account, docsPath: docsPath8, chain, data, gas, gasPrice, maxFeePerGas, maxPriorityFeePerGas, nonce, to, value }) {
|
|
28745
28782
|
const prettyArgs = prettyPrint2({
|
|
28746
28783
|
chain: chain && `${chain?.name} (id: ${chain?.id})`,
|
|
@@ -28773,7 +28810,7 @@ var require_transaction = __commonJS((exports) => {
|
|
|
28773
28810
|
this.cause = cause;
|
|
28774
28811
|
}
|
|
28775
28812
|
}
|
|
28776
|
-
exports.TransactionExecutionError =
|
|
28813
|
+
exports.TransactionExecutionError = TransactionExecutionError2;
|
|
28777
28814
|
|
|
28778
28815
|
class TransactionNotFoundError2 extends base_js_1.BaseError {
|
|
28779
28816
|
constructor({ blockHash, blockNumber, blockTag, hash: hash3, index: index2 }) {
|
|
@@ -29174,6 +29211,13 @@ var require_request = __commonJS((exports) => {
|
|
|
29174
29211
|
].filter(Boolean),
|
|
29175
29212
|
name: "WebSocketRequestError"
|
|
29176
29213
|
});
|
|
29214
|
+
Object.defineProperty(this, "url", {
|
|
29215
|
+
enumerable: true,
|
|
29216
|
+
configurable: true,
|
|
29217
|
+
writable: true,
|
|
29218
|
+
value: undefined
|
|
29219
|
+
});
|
|
29220
|
+
this.url = url;
|
|
29177
29221
|
}
|
|
29178
29222
|
}
|
|
29179
29223
|
exports.WebSocketRequestError = WebSocketRequestError;
|
|
@@ -29198,8 +29242,15 @@ var require_request = __commonJS((exports) => {
|
|
|
29198
29242
|
writable: true,
|
|
29199
29243
|
value: undefined
|
|
29200
29244
|
});
|
|
29245
|
+
Object.defineProperty(this, "url", {
|
|
29246
|
+
enumerable: true,
|
|
29247
|
+
configurable: true,
|
|
29248
|
+
writable: true,
|
|
29249
|
+
value: undefined
|
|
29250
|
+
});
|
|
29201
29251
|
this.code = error.code;
|
|
29202
29252
|
this.data = error.data;
|
|
29253
|
+
this.url = url;
|
|
29203
29254
|
}
|
|
29204
29255
|
}
|
|
29205
29256
|
exports.RpcRequestError = RpcRequestError2;
|
|
@@ -29210,6 +29261,13 @@ var require_request = __commonJS((exports) => {
|
|
|
29210
29261
|
metaMessages: [url && `URL: ${(0, utils_js_1.getUrl)(url)}`].filter(Boolean),
|
|
29211
29262
|
name: "SocketClosedError"
|
|
29212
29263
|
});
|
|
29264
|
+
Object.defineProperty(this, "url", {
|
|
29265
|
+
enumerable: true,
|
|
29266
|
+
configurable: true,
|
|
29267
|
+
writable: true,
|
|
29268
|
+
value: undefined
|
|
29269
|
+
});
|
|
29270
|
+
this.url = url;
|
|
29213
29271
|
}
|
|
29214
29272
|
}
|
|
29215
29273
|
exports.SocketClosedError = SocketClosedError;
|
|
@@ -29221,6 +29279,13 @@ var require_request = __commonJS((exports) => {
|
|
|
29221
29279
|
metaMessages: [`URL: ${(0, utils_js_1.getUrl)(url)}`, `Request body: ${(0, stringify_js_1.stringify)(body)}`],
|
|
29222
29280
|
name: "TimeoutError"
|
|
29223
29281
|
});
|
|
29282
|
+
Object.defineProperty(this, "url", {
|
|
29283
|
+
enumerable: true,
|
|
29284
|
+
configurable: true,
|
|
29285
|
+
writable: true,
|
|
29286
|
+
value: undefined
|
|
29287
|
+
});
|
|
29288
|
+
this.url = url;
|
|
29224
29289
|
}
|
|
29225
29290
|
}
|
|
29226
29291
|
exports.TimeoutError = TimeoutError2;
|
|
@@ -29734,7 +29799,7 @@ var require_getContractError = __commonJS((exports) => {
|
|
|
29734
29799
|
const cause = (() => {
|
|
29735
29800
|
if (err instanceof abi_js_1.AbiDecodingZeroDataError)
|
|
29736
29801
|
return new contract_js_1.ContractFunctionZeroDataError({ functionName });
|
|
29737
|
-
if ([EXECUTION_REVERTED_ERROR_CODE2, rpc_js_1.InternalRpcError.code].includes(code) && (data || details || message || shortMessage)) {
|
|
29802
|
+
if ([EXECUTION_REVERTED_ERROR_CODE2, rpc_js_1.InternalRpcError.code].includes(code) && (data || details || message || shortMessage) || code === rpc_js_1.InvalidInputRpcError.code && details === "execution reverted" && data) {
|
|
29738
29803
|
return new contract_js_1.ContractFunctionRevertedError({
|
|
29739
29804
|
abi: abi2,
|
|
29740
29805
|
data: typeof data === "object" ? data.data : data,
|
|
@@ -33477,17 +33542,14 @@ var require_assertRequest = __commonJS((exports) => {
|
|
|
33477
33542
|
var number_js_1 = require_number();
|
|
33478
33543
|
var address_js_1 = require_address();
|
|
33479
33544
|
var node_js_1 = require_node();
|
|
33480
|
-
var transaction_js_1 = require_transaction();
|
|
33481
33545
|
var isAddress_js_1 = require_isAddress();
|
|
33482
33546
|
function assertRequest2(args) {
|
|
33483
|
-
const { account: account_,
|
|
33547
|
+
const { account: account_, maxFeePerGas, maxPriorityFeePerGas, to } = args;
|
|
33484
33548
|
const account = account_ ? (0, parseAccount_js_1.parseAccount)(account_) : undefined;
|
|
33485
33549
|
if (account && !(0, isAddress_js_1.isAddress)(account.address))
|
|
33486
33550
|
throw new address_js_1.InvalidAddressError({ address: account.address });
|
|
33487
33551
|
if (to && !(0, isAddress_js_1.isAddress)(to))
|
|
33488
33552
|
throw new address_js_1.InvalidAddressError({ address: to });
|
|
33489
|
-
if (typeof gasPrice !== "undefined" && (typeof maxFeePerGas !== "undefined" || typeof maxPriorityFeePerGas !== "undefined"))
|
|
33490
|
-
throw new transaction_js_1.FeeConflictError;
|
|
33491
33553
|
if (maxFeePerGas && maxFeePerGas > number_js_1.maxUint256)
|
|
33492
33554
|
throw new node_js_1.FeeCapTooHighError({ maxFeePerGas });
|
|
33493
33555
|
if (maxPriorityFeePerGas && maxFeePerGas && maxPriorityFeePerGas > maxFeePerGas)
|
|
@@ -34091,6 +34153,27 @@ var require_getTransactionType = __commonJS((exports) => {
|
|
|
34091
34153
|
}
|
|
34092
34154
|
});
|
|
34093
34155
|
|
|
34156
|
+
// ../../node_modules/viem/_cjs/utils/errors/getTransactionError.js
|
|
34157
|
+
var require_getTransactionError = __commonJS((exports) => {
|
|
34158
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34159
|
+
exports.getTransactionError = getTransactionError2;
|
|
34160
|
+
var node_js_1 = require_node();
|
|
34161
|
+
var transaction_js_1 = require_transaction();
|
|
34162
|
+
var getNodeError_js_1 = require_getNodeError();
|
|
34163
|
+
function getTransactionError2(err, { docsPath: docsPath8, ...args }) {
|
|
34164
|
+
const cause = (() => {
|
|
34165
|
+
const cause2 = (0, getNodeError_js_1.getNodeError)(err, args);
|
|
34166
|
+
if (cause2 instanceof node_js_1.UnknownNodeError)
|
|
34167
|
+
return err;
|
|
34168
|
+
return cause2;
|
|
34169
|
+
})();
|
|
34170
|
+
return new transaction_js_1.TransactionExecutionError(cause, {
|
|
34171
|
+
docsPath: docsPath8,
|
|
34172
|
+
...args
|
|
34173
|
+
});
|
|
34174
|
+
}
|
|
34175
|
+
});
|
|
34176
|
+
|
|
34094
34177
|
// ../../node_modules/viem/_cjs/actions/public/getChainId.js
|
|
34095
34178
|
var require_getChainId = __commonJS((exports) => {
|
|
34096
34179
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -34104,10 +34187,125 @@ var require_getChainId = __commonJS((exports) => {
|
|
|
34104
34187
|
}
|
|
34105
34188
|
});
|
|
34106
34189
|
|
|
34190
|
+
// ../../node_modules/viem/_cjs/actions/public/fillTransaction.js
|
|
34191
|
+
var require_fillTransaction = __commonJS((exports) => {
|
|
34192
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34193
|
+
exports.fillTransaction = fillTransaction2;
|
|
34194
|
+
var parseAccount_js_1 = require_parseAccount();
|
|
34195
|
+
var fee_js_1 = require_fee();
|
|
34196
|
+
var getTransactionError_js_1 = require_getTransactionError();
|
|
34197
|
+
var extract_js_1 = require_extract();
|
|
34198
|
+
var transaction_js_1 = require_transaction2();
|
|
34199
|
+
var transactionRequest_js_1 = require_transactionRequest();
|
|
34200
|
+
var getAction_js_1 = require_getAction();
|
|
34201
|
+
var assertRequest_js_1 = require_assertRequest();
|
|
34202
|
+
var getBlock_js_1 = require_getBlock();
|
|
34203
|
+
var getChainId_js_1 = require_getChainId();
|
|
34204
|
+
async function fillTransaction2(client, parameters) {
|
|
34205
|
+
const { account = client.account, accessList, authorizationList, chain = client.chain, blobVersionedHashes, blobs, data, gas, gasPrice, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, nonce: nonce_, nonceManager, to, type, value, ...rest } = parameters;
|
|
34206
|
+
const nonce = await (async () => {
|
|
34207
|
+
if (!account)
|
|
34208
|
+
return nonce_;
|
|
34209
|
+
if (!nonceManager)
|
|
34210
|
+
return nonce_;
|
|
34211
|
+
if (typeof nonce_ !== "undefined")
|
|
34212
|
+
return nonce_;
|
|
34213
|
+
const account_ = (0, parseAccount_js_1.parseAccount)(account);
|
|
34214
|
+
const chainId = chain ? chain.id : await (0, getAction_js_1.getAction)(client, getChainId_js_1.getChainId, "getChainId")({});
|
|
34215
|
+
return await nonceManager.consume({
|
|
34216
|
+
address: account_.address,
|
|
34217
|
+
chainId,
|
|
34218
|
+
client
|
|
34219
|
+
});
|
|
34220
|
+
})();
|
|
34221
|
+
(0, assertRequest_js_1.assertRequest)(parameters);
|
|
34222
|
+
const chainFormat = chain?.formatters?.transactionRequest?.format;
|
|
34223
|
+
const format2 = chainFormat || transactionRequest_js_1.formatTransactionRequest;
|
|
34224
|
+
const request = format2({
|
|
34225
|
+
...(0, extract_js_1.extract)(rest, { format: chainFormat }),
|
|
34226
|
+
account: account ? (0, parseAccount_js_1.parseAccount)(account) : undefined,
|
|
34227
|
+
accessList,
|
|
34228
|
+
authorizationList,
|
|
34229
|
+
blobs,
|
|
34230
|
+
blobVersionedHashes,
|
|
34231
|
+
data,
|
|
34232
|
+
gas,
|
|
34233
|
+
gasPrice,
|
|
34234
|
+
maxFeePerBlobGas,
|
|
34235
|
+
maxFeePerGas,
|
|
34236
|
+
maxPriorityFeePerGas,
|
|
34237
|
+
nonce,
|
|
34238
|
+
to,
|
|
34239
|
+
type,
|
|
34240
|
+
value
|
|
34241
|
+
}, "fillTransaction");
|
|
34242
|
+
try {
|
|
34243
|
+
const response = await client.request({
|
|
34244
|
+
method: "eth_fillTransaction",
|
|
34245
|
+
params: [request]
|
|
34246
|
+
});
|
|
34247
|
+
const format3 = chain?.formatters?.transaction?.format || transaction_js_1.formatTransaction;
|
|
34248
|
+
const transaction = format3(response.tx);
|
|
34249
|
+
delete transaction.blockHash;
|
|
34250
|
+
delete transaction.blockNumber;
|
|
34251
|
+
delete transaction.r;
|
|
34252
|
+
delete transaction.s;
|
|
34253
|
+
delete transaction.transactionIndex;
|
|
34254
|
+
delete transaction.v;
|
|
34255
|
+
delete transaction.yParity;
|
|
34256
|
+
transaction.data = transaction.input;
|
|
34257
|
+
if (transaction.gas)
|
|
34258
|
+
transaction.gas = parameters.gas ?? transaction.gas;
|
|
34259
|
+
if (transaction.gasPrice)
|
|
34260
|
+
transaction.gasPrice = parameters.gasPrice ?? transaction.gasPrice;
|
|
34261
|
+
if (transaction.maxFeePerBlobGas)
|
|
34262
|
+
transaction.maxFeePerBlobGas = parameters.maxFeePerBlobGas ?? transaction.maxFeePerBlobGas;
|
|
34263
|
+
if (transaction.maxFeePerGas)
|
|
34264
|
+
transaction.maxFeePerGas = parameters.maxFeePerGas ?? transaction.maxFeePerGas;
|
|
34265
|
+
if (transaction.maxPriorityFeePerGas)
|
|
34266
|
+
transaction.maxPriorityFeePerGas = parameters.maxPriorityFeePerGas ?? transaction.maxPriorityFeePerGas;
|
|
34267
|
+
if (transaction.nonce)
|
|
34268
|
+
transaction.nonce = parameters.nonce ?? transaction.nonce;
|
|
34269
|
+
const feeMultiplier = await (async () => {
|
|
34270
|
+
if (typeof chain?.fees?.baseFeeMultiplier === "function") {
|
|
34271
|
+
const block = await (0, getAction_js_1.getAction)(client, getBlock_js_1.getBlock, "getBlock")({});
|
|
34272
|
+
return chain.fees.baseFeeMultiplier({
|
|
34273
|
+
block,
|
|
34274
|
+
client,
|
|
34275
|
+
request: parameters
|
|
34276
|
+
});
|
|
34277
|
+
}
|
|
34278
|
+
return chain?.fees?.baseFeeMultiplier ?? 1.2;
|
|
34279
|
+
})();
|
|
34280
|
+
if (feeMultiplier < 1)
|
|
34281
|
+
throw new fee_js_1.BaseFeeScalarError;
|
|
34282
|
+
const decimals = feeMultiplier.toString().split(".")[1]?.length ?? 0;
|
|
34283
|
+
const denominator = 10 ** decimals;
|
|
34284
|
+
const multiplyFee = (base2) => base2 * BigInt(Math.ceil(feeMultiplier * denominator)) / BigInt(denominator);
|
|
34285
|
+
if (transaction.maxFeePerGas && !parameters.maxFeePerGas)
|
|
34286
|
+
transaction.maxFeePerGas = multiplyFee(transaction.maxFeePerGas);
|
|
34287
|
+
if (transaction.gasPrice && !parameters.gasPrice)
|
|
34288
|
+
transaction.gasPrice = multiplyFee(transaction.gasPrice);
|
|
34289
|
+
return {
|
|
34290
|
+
raw: response.raw,
|
|
34291
|
+
transaction: {
|
|
34292
|
+
from: request.from,
|
|
34293
|
+
...transaction
|
|
34294
|
+
}
|
|
34295
|
+
};
|
|
34296
|
+
} catch (err) {
|
|
34297
|
+
throw (0, getTransactionError_js_1.getTransactionError)(err, {
|
|
34298
|
+
...parameters,
|
|
34299
|
+
chain: client.chain
|
|
34300
|
+
});
|
|
34301
|
+
}
|
|
34302
|
+
}
|
|
34303
|
+
});
|
|
34304
|
+
|
|
34107
34305
|
// ../../node_modules/viem/_cjs/actions/wallet/prepareTransactionRequest.js
|
|
34108
34306
|
var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
34109
34307
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34110
|
-
exports.eip1559NetworkCache = exports.defaultParameters = undefined;
|
|
34308
|
+
exports.supportsFillTransaction = exports.eip1559NetworkCache = exports.defaultParameters = undefined;
|
|
34111
34309
|
exports.prepareTransactionRequest = prepareTransactionRequest2;
|
|
34112
34310
|
var parseAccount_js_1 = require_parseAccount();
|
|
34113
34311
|
var estimateFeesPerGas_js_1 = require_estimateFeesPerGas();
|
|
@@ -34120,8 +34318,10 @@ var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
|
34120
34318
|
var commitmentsToVersionedHashes_js_1 = require_commitmentsToVersionedHashes();
|
|
34121
34319
|
var toBlobSidecars_js_1 = require_toBlobSidecars();
|
|
34122
34320
|
var getAction_js_1 = require_getAction();
|
|
34321
|
+
var lru_js_1 = require_lru();
|
|
34123
34322
|
var assertRequest_js_1 = require_assertRequest();
|
|
34124
34323
|
var getTransactionType_js_1 = require_getTransactionType();
|
|
34324
|
+
var fillTransaction_js_1 = require_fillTransaction();
|
|
34125
34325
|
var getChainId_js_1 = require_getChainId();
|
|
34126
34326
|
exports.defaultParameters = [
|
|
34127
34327
|
"blobVersionedHashes",
|
|
@@ -34132,17 +34332,9 @@ var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
|
34132
34332
|
"type"
|
|
34133
34333
|
];
|
|
34134
34334
|
exports.eip1559NetworkCache = new Map;
|
|
34335
|
+
exports.supportsFillTransaction = new lru_js_1.LruMap(128);
|
|
34135
34336
|
async function prepareTransactionRequest2(client, args) {
|
|
34136
|
-
const { account: account_ = client.account,
|
|
34137
|
-
const account = account_ ? (0, parseAccount_js_1.parseAccount)(account_) : account_;
|
|
34138
|
-
const request = { ...args, ...account ? { from: account?.address } : {} };
|
|
34139
|
-
let block;
|
|
34140
|
-
async function getBlock2() {
|
|
34141
|
-
if (block)
|
|
34142
|
-
return block;
|
|
34143
|
-
block = await (0, getAction_js_1.getAction)(client, getBlock_js_1.getBlock, "getBlock")({ blockTag: "latest" });
|
|
34144
|
-
return block;
|
|
34145
|
-
}
|
|
34337
|
+
const { account: account_ = client.account, chain, nonceManager, parameters = exports.defaultParameters } = args;
|
|
34146
34338
|
let chainId;
|
|
34147
34339
|
async function getChainId2() {
|
|
34148
34340
|
if (chainId)
|
|
@@ -34155,21 +34347,61 @@ var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
|
34155
34347
|
chainId = chainId_;
|
|
34156
34348
|
return chainId;
|
|
34157
34349
|
}
|
|
34158
|
-
|
|
34159
|
-
|
|
34160
|
-
|
|
34161
|
-
|
|
34162
|
-
|
|
34163
|
-
|
|
34164
|
-
|
|
34165
|
-
|
|
34166
|
-
}
|
|
34167
|
-
|
|
34168
|
-
|
|
34169
|
-
|
|
34170
|
-
|
|
34171
|
-
|
|
34350
|
+
const account = account_ ? (0, parseAccount_js_1.parseAccount)(account_) : account_;
|
|
34351
|
+
let nonce = args.nonce;
|
|
34352
|
+
if (parameters.includes("nonce") && typeof nonce === "undefined" && account && nonceManager) {
|
|
34353
|
+
const chainId2 = await getChainId2();
|
|
34354
|
+
nonce = await nonceManager.consume({
|
|
34355
|
+
address: account.address,
|
|
34356
|
+
chainId: chainId2,
|
|
34357
|
+
client
|
|
34358
|
+
});
|
|
34359
|
+
}
|
|
34360
|
+
const attemptFill = exports.supportsFillTransaction.get(client.uid) !== false && ["fees", "gas"].some((parameter) => args.parameters?.includes(parameter));
|
|
34361
|
+
const fillResult = attemptFill ? await (0, getAction_js_1.getAction)(client, fillTransaction_js_1.fillTransaction, "fillTransaction")({ ...args, nonce }).then((result) => {
|
|
34362
|
+
const { chainId: chainId2, from: from15, gas: gas2, gasPrice, nonce: nonce2, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, type: type2 } = result.transaction;
|
|
34363
|
+
exports.supportsFillTransaction.set(client.uid, true);
|
|
34364
|
+
return {
|
|
34365
|
+
...args,
|
|
34366
|
+
...chainId2 ? { chainId: chainId2 } : {},
|
|
34367
|
+
...from15 ? { from: from15 } : {},
|
|
34368
|
+
...gas2 ? { gas: gas2 } : {},
|
|
34369
|
+
...gasPrice ? { gasPrice } : {},
|
|
34370
|
+
...nonce2 ? { nonce: nonce2 } : {},
|
|
34371
|
+
...maxFeePerBlobGas ? { maxFeePerBlobGas } : {},
|
|
34372
|
+
...maxFeePerGas ? { maxFeePerGas } : {},
|
|
34373
|
+
...maxPriorityFeePerGas ? { maxPriorityFeePerGas } : {},
|
|
34374
|
+
...type2 ? { type: type2 } : {}
|
|
34375
|
+
};
|
|
34376
|
+
}).catch((e) => {
|
|
34377
|
+
const error = e;
|
|
34378
|
+
const unsupported = error.walk((e2) => {
|
|
34379
|
+
const error2 = e2;
|
|
34380
|
+
return error2.name === "MethodNotFoundRpcError" || error2.name === "MethodNotSupportedRpcError";
|
|
34381
|
+
});
|
|
34382
|
+
if (unsupported)
|
|
34383
|
+
exports.supportsFillTransaction.set(client.uid, false);
|
|
34384
|
+
return args;
|
|
34385
|
+
}) : args;
|
|
34386
|
+
const { blobs, gas, kzg, type } = fillResult;
|
|
34387
|
+
nonce ??= fillResult.nonce;
|
|
34388
|
+
const request = {
|
|
34389
|
+
...fillResult,
|
|
34390
|
+
...account ? { from: account?.address } : {},
|
|
34391
|
+
...nonce ? { nonce } : {}
|
|
34392
|
+
};
|
|
34393
|
+
let block;
|
|
34394
|
+
async function getBlock2() {
|
|
34395
|
+
if (block)
|
|
34396
|
+
return block;
|
|
34397
|
+
block = await (0, getAction_js_1.getAction)(client, getBlock_js_1.getBlock, "getBlock")({ blockTag: "latest" });
|
|
34398
|
+
return block;
|
|
34172
34399
|
}
|
|
34400
|
+
if (parameters.includes("nonce") && typeof nonce === "undefined" && account && !nonceManager)
|
|
34401
|
+
request.nonce = await (0, getAction_js_1.getAction)(client, getTransactionCount_js_1.getTransactionCount, "getTransactionCount")({
|
|
34402
|
+
address: account.address,
|
|
34403
|
+
blockTag: "pending"
|
|
34404
|
+
});
|
|
34173
34405
|
if ((parameters.includes("blobVersionedHashes") || parameters.includes("sidecars")) && blobs && kzg) {
|
|
34174
34406
|
const commitments = (0, blobsToCommitments_js_1.blobsToCommitments)({ blobs, kzg });
|
|
34175
34407
|
if (parameters.includes("blobVersionedHashes")) {
|
|
@@ -34214,7 +34446,7 @@ var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
|
34214
34446
|
chain,
|
|
34215
34447
|
request
|
|
34216
34448
|
});
|
|
34217
|
-
if (typeof
|
|
34449
|
+
if (typeof request.maxPriorityFeePerGas === "undefined" && request.maxFeePerGas && request.maxFeePerGas < maxPriorityFeePerGas)
|
|
34218
34450
|
throw new fee_js_1.MaxFeePerGasTooLowError({
|
|
34219
34451
|
maxPriorityFeePerGas
|
|
34220
34452
|
});
|
|
@@ -34222,9 +34454,9 @@ var require_prepareTransactionRequest = __commonJS((exports) => {
|
|
|
34222
34454
|
request.maxFeePerGas = maxFeePerGas;
|
|
34223
34455
|
}
|
|
34224
34456
|
} else {
|
|
34225
|
-
if (typeof
|
|
34457
|
+
if (typeof request.maxFeePerGas !== "undefined" || typeof request.maxPriorityFeePerGas !== "undefined")
|
|
34226
34458
|
throw new fee_js_1.Eip1559FeesNotSupportedError;
|
|
34227
|
-
if (typeof
|
|
34459
|
+
if (typeof request.gasPrice === "undefined") {
|
|
34228
34460
|
const block2 = await getBlock2();
|
|
34229
34461
|
const { gasPrice: gasPrice_ } = await (0, estimateFeesPerGas_js_1.internal_estimateFeesPerGas)(client, {
|
|
34230
34462
|
block: block2,
|
|
@@ -38890,27 +39122,6 @@ var require_assertCurrentChain = __commonJS((exports) => {
|
|
|
38890
39122
|
}
|
|
38891
39123
|
});
|
|
38892
39124
|
|
|
38893
|
-
// ../../node_modules/viem/_cjs/utils/errors/getTransactionError.js
|
|
38894
|
-
var require_getTransactionError = __commonJS((exports) => {
|
|
38895
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38896
|
-
exports.getTransactionError = getTransactionError;
|
|
38897
|
-
var node_js_1 = require_node();
|
|
38898
|
-
var transaction_js_1 = require_transaction();
|
|
38899
|
-
var getNodeError_js_1 = require_getNodeError();
|
|
38900
|
-
function getTransactionError(err, { docsPath: docsPath8, ...args }) {
|
|
38901
|
-
const cause = (() => {
|
|
38902
|
-
const cause2 = (0, getNodeError_js_1.getNodeError)(err, args);
|
|
38903
|
-
if (cause2 instanceof node_js_1.UnknownNodeError)
|
|
38904
|
-
return err;
|
|
38905
|
-
return cause2;
|
|
38906
|
-
})();
|
|
38907
|
-
return new transaction_js_1.TransactionExecutionError(cause, {
|
|
38908
|
-
docsPath: docsPath8,
|
|
38909
|
-
...args
|
|
38910
|
-
});
|
|
38911
|
-
}
|
|
38912
|
-
});
|
|
38913
|
-
|
|
38914
39125
|
// ../../node_modules/viem/_cjs/actions/wallet/sendRawTransaction.js
|
|
38915
39126
|
var require_sendRawTransaction = __commonJS((exports) => {
|
|
38916
39127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -39676,6 +39887,7 @@ var require_createClient = __commonJS((exports) => {
|
|
|
39676
39887
|
const cacheTime = parameters.cacheTime ?? pollingInterval;
|
|
39677
39888
|
const account = parameters.account ? (0, parseAccount_js_1.parseAccount)(parameters.account) : undefined;
|
|
39678
39889
|
const { config, request, value } = parameters.transport({
|
|
39890
|
+
account,
|
|
39679
39891
|
chain,
|
|
39680
39892
|
pollingInterval
|
|
39681
39893
|
});
|
|
@@ -42597,11 +42809,8 @@ var require_hashTypedData = __commonJS((exports) => {
|
|
|
42597
42809
|
(0, keccak256_js_1.keccak256)(encodeData3({ data: value, primaryType: type, types }))
|
|
42598
42810
|
];
|
|
42599
42811
|
}
|
|
42600
|
-
if (type === "bytes")
|
|
42601
|
-
const prepend = value.length % 2 ? "0" : "";
|
|
42602
|
-
value = `0x${prepend + value.slice(2)}`;
|
|
42812
|
+
if (type === "bytes")
|
|
42603
42813
|
return [{ type: "bytes32" }, (0, keccak256_js_1.keccak256)(value)];
|
|
42604
|
-
}
|
|
42605
42814
|
if (type === "string")
|
|
42606
42815
|
return [{ type: "bytes32" }, (0, keccak256_js_1.keccak256)((0, toHex_js_1.toHex)(value))];
|
|
42607
42816
|
if (type.lastIndexOf("]") === type.length - 1) {
|
|
@@ -46002,7 +46211,7 @@ var require_getTransaction = __commonJS((exports) => {
|
|
|
46002
46211
|
var transaction_js_1 = require_transaction();
|
|
46003
46212
|
var toHex_js_1 = require_toHex();
|
|
46004
46213
|
var transaction_js_2 = require_transaction2();
|
|
46005
|
-
async function getTransaction2(client, { blockHash, blockNumber, blockTag: blockTag_, hash: hash3, index: index2 }) {
|
|
46214
|
+
async function getTransaction2(client, { blockHash, blockNumber, blockTag: blockTag_, hash: hash3, index: index2, sender, nonce }) {
|
|
46006
46215
|
const blockTag = blockTag_ || "latest";
|
|
46007
46216
|
const blockNumberHex = blockNumber !== undefined ? (0, toHex_js_1.numberToHex)(blockNumber) : undefined;
|
|
46008
46217
|
let transaction = null;
|
|
@@ -46016,11 +46225,16 @@ var require_getTransaction = __commonJS((exports) => {
|
|
|
46016
46225
|
method: "eth_getTransactionByBlockHashAndIndex",
|
|
46017
46226
|
params: [blockHash, (0, toHex_js_1.numberToHex)(index2)]
|
|
46018
46227
|
}, { dedupe: true });
|
|
46019
|
-
} else if (blockNumberHex || blockTag) {
|
|
46228
|
+
} else if ((blockNumberHex || blockTag) && typeof index2 === "number") {
|
|
46020
46229
|
transaction = await client.request({
|
|
46021
46230
|
method: "eth_getTransactionByBlockNumberAndIndex",
|
|
46022
46231
|
params: [blockNumberHex || blockTag, (0, toHex_js_1.numberToHex)(index2)]
|
|
46023
46232
|
}, { dedupe: Boolean(blockNumberHex) });
|
|
46233
|
+
} else if (sender && typeof nonce === "number") {
|
|
46234
|
+
transaction = await client.request({
|
|
46235
|
+
method: "eth_getTransactionBySenderAndNonce",
|
|
46236
|
+
params: [sender, (0, toHex_js_1.numberToHex)(nonce)]
|
|
46237
|
+
}, { dedupe: true });
|
|
46024
46238
|
}
|
|
46025
46239
|
if (!transaction)
|
|
46026
46240
|
throw new transaction_js_1.TransactionNotFoundError({
|
|
@@ -47315,11 +47529,12 @@ var require_verifyHash2 = __commonJS((exports) => {
|
|
|
47315
47529
|
var require_verifyMessage2 = __commonJS((exports) => {
|
|
47316
47530
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47317
47531
|
exports.verifyMessage = verifyMessage2;
|
|
47532
|
+
var getAction_js_1 = require_getAction();
|
|
47318
47533
|
var hashMessage_js_1 = require_hashMessage();
|
|
47319
47534
|
var verifyHash_js_1 = require_verifyHash2();
|
|
47320
47535
|
async function verifyMessage2(client, { address, message, factory, factoryData, signature, ...callRequest }) {
|
|
47321
47536
|
const hash3 = (0, hashMessage_js_1.hashMessage)(message);
|
|
47322
|
-
return (0,
|
|
47537
|
+
return (0, getAction_js_1.getAction)(client, verifyHash_js_1.verifyHash, "verifyHash")({
|
|
47323
47538
|
address,
|
|
47324
47539
|
factory,
|
|
47325
47540
|
factoryData,
|
|
@@ -47334,12 +47549,13 @@ var require_verifyMessage2 = __commonJS((exports) => {
|
|
|
47334
47549
|
var require_verifyTypedData2 = __commonJS((exports) => {
|
|
47335
47550
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47336
47551
|
exports.verifyTypedData = verifyTypedData2;
|
|
47552
|
+
var getAction_js_1 = require_getAction();
|
|
47337
47553
|
var hashTypedData_js_1 = require_hashTypedData();
|
|
47338
47554
|
var verifyHash_js_1 = require_verifyHash2();
|
|
47339
47555
|
async function verifyTypedData2(client, parameters) {
|
|
47340
47556
|
const { address, factory, factoryData, signature, message, primaryType, types, domain, ...callRequest } = parameters;
|
|
47341
47557
|
const hash3 = (0, hashTypedData_js_1.hashTypedData)({ message, primaryType, types, domain });
|
|
47342
|
-
return (0,
|
|
47558
|
+
return (0, getAction_js_1.getAction)(client, verifyHash_js_1.verifyHash, "verifyHash")({
|
|
47343
47559
|
address,
|
|
47344
47560
|
factory,
|
|
47345
47561
|
factoryData,
|
|
@@ -48110,6 +48326,7 @@ var require_public = __commonJS((exports) => {
|
|
|
48110
48326
|
var estimateFeesPerGas_js_1 = require_estimateFeesPerGas();
|
|
48111
48327
|
var estimateGas_js_1 = require_estimateGas2();
|
|
48112
48328
|
var estimateMaxPriorityFeePerGas_js_1 = require_estimateMaxPriorityFeePerGas();
|
|
48329
|
+
var fillTransaction_js_1 = require_fillTransaction();
|
|
48113
48330
|
var getBalance_js_1 = require_getBalance();
|
|
48114
48331
|
var getBlobBaseFee_js_1 = require_getBlobBaseFee();
|
|
48115
48332
|
var getBlock_js_1 = require_getBlock();
|
|
@@ -48182,6 +48399,7 @@ var require_public = __commonJS((exports) => {
|
|
|
48182
48399
|
getLogs: (args) => (0, getLogs_js_1.getLogs)(client, args),
|
|
48183
48400
|
getProof: (args) => (0, getProof_js_1.getProof)(client, args),
|
|
48184
48401
|
estimateMaxPriorityFeePerGas: (args) => (0, estimateMaxPriorityFeePerGas_js_1.estimateMaxPriorityFeePerGas)(client, args),
|
|
48402
|
+
fillTransaction: (args) => (0, fillTransaction_js_1.fillTransaction)(client, args),
|
|
48185
48403
|
getStorageAt: (args) => (0, getStorageAt_js_1.getStorageAt)(client, args),
|
|
48186
48404
|
getTransaction: (args) => (0, getTransaction_js_1.getTransaction)(client, args),
|
|
48187
48405
|
getTransactionConfirmations: (args) => (0, getTransactionConfirmations_js_1.getTransactionConfirmations)(client, args),
|
|
@@ -49291,6 +49509,7 @@ var require_writeContractSync = __commonJS((exports) => {
|
|
|
49291
49509
|
var require_wallet = __commonJS((exports) => {
|
|
49292
49510
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49293
49511
|
exports.walletActions = walletActions;
|
|
49512
|
+
var fillTransaction_js_1 = require_fillTransaction();
|
|
49294
49513
|
var getChainId_js_1 = require_getChainId();
|
|
49295
49514
|
var addChain_js_1 = require_addChain();
|
|
49296
49515
|
var deployContract_js_1 = require_deployContract();
|
|
@@ -49322,6 +49541,7 @@ var require_wallet = __commonJS((exports) => {
|
|
|
49322
49541
|
return {
|
|
49323
49542
|
addChain: (args) => (0, addChain_js_1.addChain)(client, args),
|
|
49324
49543
|
deployContract: (args) => (0, deployContract_js_1.deployContract)(client, args),
|
|
49544
|
+
fillTransaction: (args) => (0, fillTransaction_js_1.fillTransaction)(client, args),
|
|
49325
49545
|
getAddresses: () => (0, getAddresses_js_1.getAddresses)(client),
|
|
49326
49546
|
getCallsStatus: (args) => (0, getCallsStatus_js_1.getCallsStatus)(client, args),
|
|
49327
49547
|
getCapabilities: (args) => (0, getCapabilities_js_1.getCapabilities)(client, args),
|
|
@@ -51475,9 +51695,9 @@ var require__cjs = __commonJS((exports) => {
|
|
|
51475
51695
|
// ../../node_modules/viem/_cjs/actions/index.js
|
|
51476
51696
|
var require_actions = __commonJS((exports) => {
|
|
51477
51697
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51478
|
-
exports.
|
|
51479
|
-
exports.
|
|
51480
|
-
exports.writeContractSync = exports.writeContract = exports.watchAsset = exports.waitForCallsStatus = exports.switchChain = exports.signTypedData = exports.signTransaction = exports.signMessage = exports.signAuthorization = undefined;
|
|
51698
|
+
exports.watchBlocks = exports.watchBlockNumber = exports.waitForTransactionReceipt = exports.verifyTypedData = exports.verifyMessage = exports.verifyHash = exports.uninstallFilter = exports.simulateContract = exports.simulateCalls = exports.simulate = exports.simulateBlocks = exports.readContract = exports.multicall = exports.getTransactionReceipt = exports.getTransactionCount = exports.getTransactionConfirmations = exports.getTransaction = exports.getStorageAt = exports.getProof = exports.getLogs = exports.getGasPrice = exports.getFilterLogs = exports.getFilterChanges = exports.getFeeHistory = exports.getEip712Domain = exports.getContractEvents = exports.getCode = exports.getBytecode = exports.getChainId = exports.getBlockTransactionCount = exports.getBlockNumber = exports.getBlock = exports.getBlobBaseFee = exports.getBalance = exports.fillTransaction = exports.estimateMaxPriorityFeePerGas = exports.estimateGas = exports.estimateFeesPerGas = exports.estimateContractGas = exports.createPendingTransactionFilter = exports.createEventFilter = exports.createContractEventFilter = exports.createBlockFilter = exports.createAccessList = exports.call = exports.getEnsText = exports.getEnsResolver = exports.getEnsName = exports.getEnsAvatar = exports.getEnsAddress = undefined;
|
|
51699
|
+
exports.sendTransactionSync = exports.sendTransaction = exports.sendRawTransactionSync = exports.sendRawTransaction = exports.sendCallsSync = exports.sendCalls = exports.requestPermissions = exports.requestAddresses = exports.prepareTransactionRequest = exports.defaultPrepareTransactionRequestParameters = exports.prepareAuthorization = exports.getPermissions = exports.getCapabilities = exports.getCallsStatus = exports.getAddresses = exports.deployContract = exports.addChain = exports.stopImpersonatingAccount = exports.snapshot = exports.setStorageAt = exports.setRpcUrl = exports.setNonce = exports.setNextBlockTimestamp = exports.setNextBlockBaseFeePerGas = exports.setMinGasPrice = exports.setLoggingEnabled = exports.setIntervalMining = exports.setCoinbase = exports.setCode = exports.setBlockTimestampInterval = exports.setBlockGasLimit = exports.setBalance = exports.setAutomine = exports.sendUnsignedTransaction = exports.revert = exports.reset = exports.removeBlockTimestampInterval = exports.mine = exports.loadState = exports.inspectTxpool = exports.increaseTime = exports.impersonateAccount = exports.getTxpoolStatus = exports.getTxpoolContent = exports.getAutomine = exports.dumpState = exports.dropTransaction = exports.watchPendingTransactions = exports.watchEvent = exports.watchContractEvent = undefined;
|
|
51700
|
+
exports.writeContractSync = exports.writeContract = exports.watchAsset = exports.waitForCallsStatus = exports.switchChain = exports.signTypedData = exports.signTransaction = exports.signMessage = exports.signAuthorization = exports.showCallsStatus = undefined;
|
|
51481
51701
|
var getEnsAddress_js_1 = require_getEnsAddress();
|
|
51482
51702
|
Object.defineProperty(exports, "getEnsAddress", { enumerable: true, get: function() {
|
|
51483
51703
|
return getEnsAddress_js_1.getEnsAddress;
|
|
@@ -51538,6 +51758,10 @@ var require_actions = __commonJS((exports) => {
|
|
|
51538
51758
|
Object.defineProperty(exports, "estimateMaxPriorityFeePerGas", { enumerable: true, get: function() {
|
|
51539
51759
|
return estimateMaxPriorityFeePerGas_js_1.estimateMaxPriorityFeePerGas;
|
|
51540
51760
|
} });
|
|
51761
|
+
var fillTransaction_js_1 = require_fillTransaction();
|
|
51762
|
+
Object.defineProperty(exports, "fillTransaction", { enumerable: true, get: function() {
|
|
51763
|
+
return fillTransaction_js_1.fillTransaction;
|
|
51764
|
+
} });
|
|
51541
51765
|
var getBalance_js_1 = require_getBalance();
|
|
51542
51766
|
Object.defineProperty(exports, "getBalance", { enumerable: true, get: function() {
|
|
51543
51767
|
return getBalance_js_1.getBalance;
|
|
@@ -52117,6 +52341,7 @@ var require_simulate_tx_accessor5 = __commonJS((exports, module) => {
|
|
|
52117
52341
|
"4157": "eip155",
|
|
52118
52342
|
"4158": "eip155",
|
|
52119
52343
|
"4202": "canonical",
|
|
52344
|
+
"4326": "canonical",
|
|
52120
52345
|
"4337": "canonical",
|
|
52121
52346
|
"4460": "canonical",
|
|
52122
52347
|
"4653": "eip155",
|
|
@@ -52262,6 +52487,7 @@ var require_simulate_tx_accessor5 = __commonJS((exports, module) => {
|
|
|
52262
52487
|
"97435": "canonical",
|
|
52263
52488
|
"103454": "eip155",
|
|
52264
52489
|
"111188": "canonical",
|
|
52490
|
+
"127823": ["canonical", "eip155"],
|
|
52265
52491
|
"128123": ["eip155", "canonical"],
|
|
52266
52492
|
"167000": ["eip155", "canonical"],
|
|
52267
52493
|
"167008": "canonical",
|
|
@@ -52291,7 +52517,7 @@ var require_simulate_tx_accessor5 = __commonJS((exports, module) => {
|
|
|
52291
52517
|
"660279": "canonical",
|
|
52292
52518
|
"668668": "canonical",
|
|
52293
52519
|
"688688": "eip155",
|
|
52294
|
-
"688689": "canonical",
|
|
52520
|
+
"688689": ["canonical", "eip155"],
|
|
52295
52521
|
"695569": ["eip155", "canonical"],
|
|
52296
52522
|
"713715": ["eip155", "canonical"],
|
|
52297
52523
|
"747474": ["eip155", "canonical"],
|
|
@@ -52300,6 +52526,7 @@ var require_simulate_tx_accessor5 = __commonJS((exports, module) => {
|
|
|
52300
52526
|
"808813": ["eip155", "canonical"],
|
|
52301
52527
|
"810180": "zksync",
|
|
52302
52528
|
"978657": "canonical",
|
|
52529
|
+
"1000101": "canonical",
|
|
52303
52530
|
"4457845": "zksync",
|
|
52304
52531
|
"6038361": ["eip155", "canonical"],
|
|
52305
52532
|
"6985385": "eip155",
|
|
@@ -52440,6 +52667,7 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52440
52667
|
"143": "canonical",
|
|
52441
52668
|
"146": "canonical",
|
|
52442
52669
|
"150": "canonical",
|
|
52670
|
+
"151": "canonical",
|
|
52443
52671
|
"153": "canonical",
|
|
52444
52672
|
"155": "canonical",
|
|
52445
52673
|
"169": "canonical",
|
|
@@ -52498,6 +52726,7 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52498
52726
|
"1329": "canonical",
|
|
52499
52727
|
"1337": "canonical",
|
|
52500
52728
|
"1424": "canonical",
|
|
52729
|
+
"1439": "canonical",
|
|
52501
52730
|
"1442": "canonical",
|
|
52502
52731
|
"1480": "canonical",
|
|
52503
52732
|
"1514": "canonical",
|
|
@@ -52507,6 +52736,7 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52507
52736
|
"1729": "canonical",
|
|
52508
52737
|
"1740": "canonical",
|
|
52509
52738
|
"1750": "canonical",
|
|
52739
|
+
"1776": "canonical",
|
|
52510
52740
|
"1811": "canonical",
|
|
52511
52741
|
"1868": "canonical",
|
|
52512
52742
|
"1923": "canonical",
|
|
@@ -52543,6 +52773,7 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52543
52773
|
"4158": "canonical",
|
|
52544
52774
|
"4162": "canonical",
|
|
52545
52775
|
"4202": "canonical",
|
|
52776
|
+
"4326": "canonical",
|
|
52546
52777
|
"4337": "canonical",
|
|
52547
52778
|
"4488": "canonical",
|
|
52548
52779
|
"4653": "canonical",
|
|
@@ -52682,10 +52913,13 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52682
52913
|
"98985": "canonical",
|
|
52683
52914
|
"105105": "canonical",
|
|
52684
52915
|
"111188": "canonical",
|
|
52916
|
+
"127823": "canonical",
|
|
52685
52917
|
"128123": "canonical",
|
|
52686
52918
|
"167000": "canonical",
|
|
52687
52919
|
"167009": "canonical",
|
|
52688
52920
|
"175188": "canonical",
|
|
52921
|
+
"181228": "canonical",
|
|
52922
|
+
"190415": "canonical",
|
|
52689
52923
|
"200810": "canonical",
|
|
52690
52924
|
"200901": "canonical",
|
|
52691
52925
|
"205205": "canonical",
|
|
@@ -52726,6 +52960,7 @@ var require_simulate_tx_accessor6 = __commonJS((exports, module) => {
|
|
|
52726
52960
|
"7225878": "canonical",
|
|
52727
52961
|
"7777777": "canonical",
|
|
52728
52962
|
"9999999": "canonical",
|
|
52963
|
+
"11142220": "canonical",
|
|
52729
52964
|
"11155111": "canonical",
|
|
52730
52965
|
"11155420": "canonical",
|
|
52731
52966
|
"11155931": "canonical",
|
|
@@ -52830,6 +53065,7 @@ var require_simulate_tx_accessor7 = __commonJS((exports, module) => {
|
|
|
52830
53065
|
"1": "canonical",
|
|
52831
53066
|
"756": "canonical",
|
|
52832
53067
|
"1995": "canonical",
|
|
53068
|
+
"4326": "canonical",
|
|
52833
53069
|
"5424": "canonical",
|
|
52834
53070
|
"5887": "canonical",
|
|
52835
53071
|
"9302": "canonical",
|
|
@@ -53409,6 +53645,7 @@ var require_proxy_factory9 = __commonJS((exports, module) => {
|
|
|
53409
53645
|
"4157": "eip155",
|
|
53410
53646
|
"4158": "eip155",
|
|
53411
53647
|
"4202": "canonical",
|
|
53648
|
+
"4326": "canonical",
|
|
53412
53649
|
"4337": "canonical",
|
|
53413
53650
|
"4460": "canonical",
|
|
53414
53651
|
"4653": "eip155",
|
|
@@ -53554,6 +53791,7 @@ var require_proxy_factory9 = __commonJS((exports, module) => {
|
|
|
53554
53791
|
"97435": "canonical",
|
|
53555
53792
|
"103454": "eip155",
|
|
53556
53793
|
"111188": "canonical",
|
|
53794
|
+
"127823": ["canonical", "eip155"],
|
|
53557
53795
|
"128123": ["eip155", "canonical"],
|
|
53558
53796
|
"167000": ["eip155", "canonical"],
|
|
53559
53797
|
"167008": "canonical",
|
|
@@ -53583,7 +53821,7 @@ var require_proxy_factory9 = __commonJS((exports, module) => {
|
|
|
53583
53821
|
"660279": "canonical",
|
|
53584
53822
|
"668668": "canonical",
|
|
53585
53823
|
"688688": "eip155",
|
|
53586
|
-
"688689": "canonical",
|
|
53824
|
+
"688689": ["canonical", "eip155"],
|
|
53587
53825
|
"695569": ["eip155", "canonical"],
|
|
53588
53826
|
"713715": ["eip155", "canonical"],
|
|
53589
53827
|
"747474": ["eip155", "canonical"],
|
|
@@ -53592,6 +53830,7 @@ var require_proxy_factory9 = __commonJS((exports, module) => {
|
|
|
53592
53830
|
"808813": ["eip155", "canonical"],
|
|
53593
53831
|
"810180": "zksync",
|
|
53594
53832
|
"978657": "canonical",
|
|
53833
|
+
"1000101": "canonical",
|
|
53595
53834
|
"4457845": "zksync",
|
|
53596
53835
|
"6038361": ["eip155", "canonical"],
|
|
53597
53836
|
"6985385": "eip155",
|
|
@@ -53844,6 +54083,7 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
53844
54083
|
"143": "canonical",
|
|
53845
54084
|
"146": "canonical",
|
|
53846
54085
|
"150": "canonical",
|
|
54086
|
+
"151": "canonical",
|
|
53847
54087
|
"153": "canonical",
|
|
53848
54088
|
"155": "canonical",
|
|
53849
54089
|
"169": "canonical",
|
|
@@ -53902,6 +54142,7 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
53902
54142
|
"1329": "canonical",
|
|
53903
54143
|
"1337": "canonical",
|
|
53904
54144
|
"1424": "canonical",
|
|
54145
|
+
"1439": "canonical",
|
|
53905
54146
|
"1442": "canonical",
|
|
53906
54147
|
"1480": "canonical",
|
|
53907
54148
|
"1514": "canonical",
|
|
@@ -53911,6 +54152,7 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
53911
54152
|
"1729": "canonical",
|
|
53912
54153
|
"1740": "canonical",
|
|
53913
54154
|
"1750": "canonical",
|
|
54155
|
+
"1776": "canonical",
|
|
53914
54156
|
"1811": "canonical",
|
|
53915
54157
|
"1868": "canonical",
|
|
53916
54158
|
"1923": "canonical",
|
|
@@ -53947,6 +54189,7 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
53947
54189
|
"4158": "canonical",
|
|
53948
54190
|
"4162": "canonical",
|
|
53949
54191
|
"4202": "canonical",
|
|
54192
|
+
"4326": "canonical",
|
|
53950
54193
|
"4337": "canonical",
|
|
53951
54194
|
"4488": "canonical",
|
|
53952
54195
|
"4653": "canonical",
|
|
@@ -54086,10 +54329,13 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
54086
54329
|
"98985": "canonical",
|
|
54087
54330
|
"105105": "canonical",
|
|
54088
54331
|
"111188": "canonical",
|
|
54332
|
+
"127823": "canonical",
|
|
54089
54333
|
"128123": "canonical",
|
|
54090
54334
|
"167000": "canonical",
|
|
54091
54335
|
"167009": "canonical",
|
|
54092
54336
|
"175188": "canonical",
|
|
54337
|
+
"181228": "canonical",
|
|
54338
|
+
"190415": "canonical",
|
|
54093
54339
|
"200810": "canonical",
|
|
54094
54340
|
"200901": "canonical",
|
|
54095
54341
|
"205205": "canonical",
|
|
@@ -54130,6 +54376,7 @@ var require_safe_proxy_factory3 = __commonJS((exports, module) => {
|
|
|
54130
54376
|
"7225878": "canonical",
|
|
54131
54377
|
"7777777": "canonical",
|
|
54132
54378
|
"9999999": "canonical",
|
|
54379
|
+
"11142220": "canonical",
|
|
54133
54380
|
"11155111": "canonical",
|
|
54134
54381
|
"11155420": "canonical",
|
|
54135
54382
|
"11155931": "canonical",
|
|
@@ -54322,6 +54569,7 @@ var require_safe_proxy_factory4 = __commonJS((exports, module) => {
|
|
|
54322
54569
|
"1": "canonical",
|
|
54323
54570
|
"756": "canonical",
|
|
54324
54571
|
"1995": "canonical",
|
|
54572
|
+
"4326": "canonical",
|
|
54325
54573
|
"5424": "canonical",
|
|
54326
54574
|
"5887": "canonical",
|
|
54327
54575
|
"9302": "canonical",
|
|
@@ -54804,6 +55052,7 @@ var require_token_callback_handler = __commonJS((exports, module) => {
|
|
|
54804
55052
|
"1": "canonical",
|
|
54805
55053
|
"756": "canonical",
|
|
54806
55054
|
"1995": "canonical",
|
|
55055
|
+
"4326": "canonical",
|
|
54807
55056
|
"5424": "canonical",
|
|
54808
55057
|
"5887": "canonical",
|
|
54809
55058
|
"9302": "canonical",
|
|
@@ -55193,6 +55442,7 @@ var require_compatibility_fallback_handler5 = __commonJS((exports, module) => {
|
|
|
55193
55442
|
"4157": "eip155",
|
|
55194
55443
|
"4158": "eip155",
|
|
55195
55444
|
"4202": "canonical",
|
|
55445
|
+
"4326": "canonical",
|
|
55196
55446
|
"4337": "canonical",
|
|
55197
55447
|
"4460": "canonical",
|
|
55198
55448
|
"4653": "eip155",
|
|
@@ -55338,6 +55588,7 @@ var require_compatibility_fallback_handler5 = __commonJS((exports, module) => {
|
|
|
55338
55588
|
"97435": "canonical",
|
|
55339
55589
|
"103454": "eip155",
|
|
55340
55590
|
"111188": "canonical",
|
|
55591
|
+
"127823": ["canonical", "eip155"],
|
|
55341
55592
|
"128123": ["eip155", "canonical"],
|
|
55342
55593
|
"167000": ["eip155", "canonical"],
|
|
55343
55594
|
"167008": "canonical",
|
|
@@ -55367,7 +55618,7 @@ var require_compatibility_fallback_handler5 = __commonJS((exports, module) => {
|
|
|
55367
55618
|
"660279": "canonical",
|
|
55368
55619
|
"668668": "canonical",
|
|
55369
55620
|
"688688": "eip155",
|
|
55370
|
-
"688689": "canonical",
|
|
55621
|
+
"688689": ["canonical", "eip155"],
|
|
55371
55622
|
"695569": ["eip155", "canonical"],
|
|
55372
55623
|
"713715": ["eip155", "canonical"],
|
|
55373
55624
|
"747474": ["eip155", "canonical"],
|
|
@@ -55376,6 +55627,7 @@ var require_compatibility_fallback_handler5 = __commonJS((exports, module) => {
|
|
|
55376
55627
|
"808813": ["eip155", "canonical"],
|
|
55377
55628
|
"810180": "zksync",
|
|
55378
55629
|
"978657": "canonical",
|
|
55630
|
+
"1000101": "canonical",
|
|
55379
55631
|
"4457845": "zksync",
|
|
55380
55632
|
"6038361": ["eip155", "canonical"],
|
|
55381
55633
|
"6985385": "eip155",
|
|
@@ -55790,6 +56042,7 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
55790
56042
|
"143": "canonical",
|
|
55791
56043
|
"146": "canonical",
|
|
55792
56044
|
"150": "canonical",
|
|
56045
|
+
"151": "canonical",
|
|
55793
56046
|
"153": "canonical",
|
|
55794
56047
|
"155": "canonical",
|
|
55795
56048
|
"169": "canonical",
|
|
@@ -55848,6 +56101,7 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
55848
56101
|
"1329": "canonical",
|
|
55849
56102
|
"1337": "canonical",
|
|
55850
56103
|
"1424": "canonical",
|
|
56104
|
+
"1439": "canonical",
|
|
55851
56105
|
"1442": "canonical",
|
|
55852
56106
|
"1480": "canonical",
|
|
55853
56107
|
"1514": "canonical",
|
|
@@ -55857,6 +56111,7 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
55857
56111
|
"1729": "canonical",
|
|
55858
56112
|
"1740": "canonical",
|
|
55859
56113
|
"1750": "canonical",
|
|
56114
|
+
"1776": "canonical",
|
|
55860
56115
|
"1811": "canonical",
|
|
55861
56116
|
"1868": "canonical",
|
|
55862
56117
|
"1923": "canonical",
|
|
@@ -55893,6 +56148,7 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
55893
56148
|
"4158": "canonical",
|
|
55894
56149
|
"4162": "canonical",
|
|
55895
56150
|
"4202": "canonical",
|
|
56151
|
+
"4326": "canonical",
|
|
55896
56152
|
"4337": "canonical",
|
|
55897
56153
|
"4488": "canonical",
|
|
55898
56154
|
"4653": "canonical",
|
|
@@ -56032,10 +56288,13 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
56032
56288
|
"98985": "canonical",
|
|
56033
56289
|
"105105": "canonical",
|
|
56034
56290
|
"111188": "canonical",
|
|
56291
|
+
"127823": "canonical",
|
|
56035
56292
|
"128123": "canonical",
|
|
56036
56293
|
"167000": "canonical",
|
|
56037
56294
|
"167009": "canonical",
|
|
56038
56295
|
"175188": "canonical",
|
|
56296
|
+
"181228": "canonical",
|
|
56297
|
+
"190415": "canonical",
|
|
56039
56298
|
"200810": "canonical",
|
|
56040
56299
|
"200901": "canonical",
|
|
56041
56300
|
"205205": "canonical",
|
|
@@ -56076,6 +56335,7 @@ var require_compatibility_fallback_handler6 = __commonJS((exports, module) => {
|
|
|
56076
56335
|
"7225878": "canonical",
|
|
56077
56336
|
"7777777": "canonical",
|
|
56078
56337
|
"9999999": "canonical",
|
|
56338
|
+
"11142220": "canonical",
|
|
56079
56339
|
"11155111": "canonical",
|
|
56080
56340
|
"11155420": "canonical",
|
|
56081
56341
|
"11155931": "canonical",
|
|
@@ -56452,6 +56712,7 @@ var require_compatibility_fallback_handler7 = __commonJS((exports, module) => {
|
|
|
56452
56712
|
"1": "canonical",
|
|
56453
56713
|
"756": "canonical",
|
|
56454
56714
|
"1995": "canonical",
|
|
56715
|
+
"4326": "canonical",
|
|
56455
56716
|
"5424": "canonical",
|
|
56456
56717
|
"5887": "canonical",
|
|
56457
56718
|
"9302": "canonical",
|
|
@@ -56850,6 +57111,7 @@ var require_extensible_fallback_handler = __commonJS((exports, module) => {
|
|
|
56850
57111
|
"1": "canonical",
|
|
56851
57112
|
"756": "canonical",
|
|
56852
57113
|
"1995": "canonical",
|
|
57114
|
+
"4326": "canonical",
|
|
56853
57115
|
"5424": "canonical",
|
|
56854
57116
|
"5887": "canonical",
|
|
56855
57117
|
"9302": "canonical",
|
|
@@ -60322,6 +60584,7 @@ var require_gnosis_safe10 = __commonJS((exports, module) => {
|
|
|
60322
60584
|
"4157": "eip155",
|
|
60323
60585
|
"4158": "eip155",
|
|
60324
60586
|
"4202": "canonical",
|
|
60587
|
+
"4326": "canonical",
|
|
60325
60588
|
"4337": "canonical",
|
|
60326
60589
|
"4460": "canonical",
|
|
60327
60590
|
"4653": "eip155",
|
|
@@ -60467,6 +60730,7 @@ var require_gnosis_safe10 = __commonJS((exports, module) => {
|
|
|
60467
60730
|
"97435": "canonical",
|
|
60468
60731
|
"103454": "eip155",
|
|
60469
60732
|
"111188": "canonical",
|
|
60733
|
+
"127823": ["canonical", "eip155"],
|
|
60470
60734
|
"128123": ["eip155", "canonical"],
|
|
60471
60735
|
"167000": ["eip155", "canonical"],
|
|
60472
60736
|
"167008": "canonical",
|
|
@@ -60496,7 +60760,7 @@ var require_gnosis_safe10 = __commonJS((exports, module) => {
|
|
|
60496
60760
|
"660279": "canonical",
|
|
60497
60761
|
"668668": "canonical",
|
|
60498
60762
|
"688688": "eip155",
|
|
60499
|
-
"688689": "canonical",
|
|
60763
|
+
"688689": ["canonical", "eip155"],
|
|
60500
60764
|
"695569": ["eip155", "canonical"],
|
|
60501
60765
|
"713715": ["eip155", "canonical"],
|
|
60502
60766
|
"747474": ["eip155", "canonical"],
|
|
@@ -60505,6 +60769,7 @@ var require_gnosis_safe10 = __commonJS((exports, module) => {
|
|
|
60505
60769
|
"808813": ["eip155", "canonical"],
|
|
60506
60770
|
"810180": "zksync",
|
|
60507
60771
|
"978657": "canonical",
|
|
60772
|
+
"1000101": "canonical",
|
|
60508
60773
|
"4457845": "zksync",
|
|
60509
60774
|
"6038361": ["eip155", "canonical"],
|
|
60510
60775
|
"6985385": "eip155",
|
|
@@ -61627,6 +61892,7 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61627
61892
|
"143": "canonical",
|
|
61628
61893
|
"146": "canonical",
|
|
61629
61894
|
"150": "canonical",
|
|
61895
|
+
"151": "canonical",
|
|
61630
61896
|
"153": "canonical",
|
|
61631
61897
|
"155": "canonical",
|
|
61632
61898
|
"169": "canonical",
|
|
@@ -61685,6 +61951,7 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61685
61951
|
"1329": "canonical",
|
|
61686
61952
|
"1337": "canonical",
|
|
61687
61953
|
"1424": "canonical",
|
|
61954
|
+
"1439": "canonical",
|
|
61688
61955
|
"1442": "canonical",
|
|
61689
61956
|
"1480": "canonical",
|
|
61690
61957
|
"1514": "canonical",
|
|
@@ -61694,6 +61961,7 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61694
61961
|
"1729": "canonical",
|
|
61695
61962
|
"1740": "canonical",
|
|
61696
61963
|
"1750": "canonical",
|
|
61964
|
+
"1776": "canonical",
|
|
61697
61965
|
"1811": "canonical",
|
|
61698
61966
|
"1868": "canonical",
|
|
61699
61967
|
"1923": "canonical",
|
|
@@ -61730,6 +61998,7 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61730
61998
|
"4158": "canonical",
|
|
61731
61999
|
"4162": "canonical",
|
|
61732
62000
|
"4202": "canonical",
|
|
62001
|
+
"4326": "canonical",
|
|
61733
62002
|
"4337": "canonical",
|
|
61734
62003
|
"4488": "canonical",
|
|
61735
62004
|
"4653": "canonical",
|
|
@@ -61869,10 +62138,13 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61869
62138
|
"98985": "canonical",
|
|
61870
62139
|
"105105": "canonical",
|
|
61871
62140
|
"111188": "canonical",
|
|
62141
|
+
"127823": "canonical",
|
|
61872
62142
|
"128123": "canonical",
|
|
61873
62143
|
"167000": "canonical",
|
|
61874
62144
|
"167009": "canonical",
|
|
61875
62145
|
"175188": "canonical",
|
|
62146
|
+
"181228": "canonical",
|
|
62147
|
+
"190415": "canonical",
|
|
61876
62148
|
"200810": "canonical",
|
|
61877
62149
|
"200901": "canonical",
|
|
61878
62150
|
"205205": "canonical",
|
|
@@ -61913,6 +62185,7 @@ var require_safe = __commonJS((exports, module) => {
|
|
|
61913
62185
|
"7225878": "canonical",
|
|
61914
62186
|
"7777777": "canonical",
|
|
61915
62187
|
"9999999": "canonical",
|
|
62188
|
+
"11142220": "canonical",
|
|
61916
62189
|
"11155111": "canonical",
|
|
61917
62190
|
"11155420": "canonical",
|
|
61918
62191
|
"11155931": "canonical",
|
|
@@ -62965,6 +63238,7 @@ var require_safe2 = __commonJS((exports, module) => {
|
|
|
62965
63238
|
"1": "canonical",
|
|
62966
63239
|
"756": "canonical",
|
|
62967
63240
|
"1995": "canonical",
|
|
63241
|
+
"4326": "canonical",
|
|
62968
63242
|
"5424": "canonical",
|
|
62969
63243
|
"5887": "canonical",
|
|
62970
63244
|
"9302": "canonical",
|
|
@@ -64182,6 +64456,7 @@ var require_gnosis_safe_l23 = __commonJS((exports, module) => {
|
|
|
64182
64456
|
"4157": "eip155",
|
|
64183
64457
|
"4158": "eip155",
|
|
64184
64458
|
"4202": "canonical",
|
|
64459
|
+
"4326": "canonical",
|
|
64185
64460
|
"4337": "canonical",
|
|
64186
64461
|
"4460": "canonical",
|
|
64187
64462
|
"4653": "eip155",
|
|
@@ -64327,6 +64602,7 @@ var require_gnosis_safe_l23 = __commonJS((exports, module) => {
|
|
|
64327
64602
|
"97435": "canonical",
|
|
64328
64603
|
"103454": "eip155",
|
|
64329
64604
|
"111188": "canonical",
|
|
64605
|
+
"127823": ["canonical", "eip155"],
|
|
64330
64606
|
"128123": ["eip155", "canonical"],
|
|
64331
64607
|
"167000": ["eip155", "canonical"],
|
|
64332
64608
|
"167008": "canonical",
|
|
@@ -64356,7 +64632,7 @@ var require_gnosis_safe_l23 = __commonJS((exports, module) => {
|
|
|
64356
64632
|
"660279": "canonical",
|
|
64357
64633
|
"668668": "canonical",
|
|
64358
64634
|
"688688": "eip155",
|
|
64359
|
-
"688689": "canonical",
|
|
64635
|
+
"688689": ["canonical", "eip155"],
|
|
64360
64636
|
"695569": ["eip155", "canonical"],
|
|
64361
64637
|
"713715": ["eip155", "canonical"],
|
|
64362
64638
|
"747474": ["eip155", "canonical"],
|
|
@@ -64365,6 +64641,7 @@ var require_gnosis_safe_l23 = __commonJS((exports, module) => {
|
|
|
64365
64641
|
"808813": ["eip155", "canonical"],
|
|
64366
64642
|
"810180": "zksync",
|
|
64367
64643
|
"978657": "canonical",
|
|
64644
|
+
"1000101": "canonical",
|
|
64368
64645
|
"4457845": "zksync",
|
|
64369
64646
|
"6038361": ["eip155", "canonical"],
|
|
64370
64647
|
"6985385": "eip155",
|
|
@@ -65592,6 +65869,7 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65592
65869
|
"143": "canonical",
|
|
65593
65870
|
"146": "canonical",
|
|
65594
65871
|
"150": "canonical",
|
|
65872
|
+
"151": "canonical",
|
|
65595
65873
|
"153": "canonical",
|
|
65596
65874
|
"155": "canonical",
|
|
65597
65875
|
"169": "canonical",
|
|
@@ -65650,6 +65928,7 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65650
65928
|
"1329": "canonical",
|
|
65651
65929
|
"1337": "canonical",
|
|
65652
65930
|
"1424": "canonical",
|
|
65931
|
+
"1439": "canonical",
|
|
65653
65932
|
"1442": "canonical",
|
|
65654
65933
|
"1480": "canonical",
|
|
65655
65934
|
"1514": "canonical",
|
|
@@ -65659,6 +65938,7 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65659
65938
|
"1729": "canonical",
|
|
65660
65939
|
"1740": "canonical",
|
|
65661
65940
|
"1750": "canonical",
|
|
65941
|
+
"1776": "canonical",
|
|
65662
65942
|
"1811": "canonical",
|
|
65663
65943
|
"1868": "canonical",
|
|
65664
65944
|
"1923": "canonical",
|
|
@@ -65695,6 +65975,7 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65695
65975
|
"4158": "canonical",
|
|
65696
65976
|
"4162": "canonical",
|
|
65697
65977
|
"4202": "canonical",
|
|
65978
|
+
"4326": "canonical",
|
|
65698
65979
|
"4337": "canonical",
|
|
65699
65980
|
"4488": "canonical",
|
|
65700
65981
|
"4653": "canonical",
|
|
@@ -65834,10 +66115,13 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65834
66115
|
"98985": "canonical",
|
|
65835
66116
|
"105105": "canonical",
|
|
65836
66117
|
"111188": "canonical",
|
|
66118
|
+
"127823": "canonical",
|
|
65837
66119
|
"128123": "canonical",
|
|
65838
66120
|
"167000": "canonical",
|
|
65839
66121
|
"167009": "canonical",
|
|
65840
66122
|
"175188": "canonical",
|
|
66123
|
+
"181228": "canonical",
|
|
66124
|
+
"190415": "canonical",
|
|
65841
66125
|
"200810": "canonical",
|
|
65842
66126
|
"200901": "canonical",
|
|
65843
66127
|
"205205": "canonical",
|
|
@@ -65878,6 +66162,7 @@ var require_safe_l23 = __commonJS((exports, module) => {
|
|
|
65878
66162
|
"7225878": "canonical",
|
|
65879
66163
|
"7777777": "canonical",
|
|
65880
66164
|
"9999999": "canonical",
|
|
66165
|
+
"11142220": "canonical",
|
|
65881
66166
|
"11155111": "canonical",
|
|
65882
66167
|
"11155420": "canonical",
|
|
65883
66168
|
"11155931": "canonical",
|
|
@@ -67035,6 +67320,7 @@ var require_safe_l24 = __commonJS((exports, module) => {
|
|
|
67035
67320
|
"1": "canonical",
|
|
67036
67321
|
"756": "canonical",
|
|
67037
67322
|
"1995": "canonical",
|
|
67323
|
+
"4326": "canonical",
|
|
67038
67324
|
"5424": "canonical",
|
|
67039
67325
|
"5887": "canonical",
|
|
67040
67326
|
"9302": "canonical",
|
|
@@ -68406,6 +68692,7 @@ var require_multi_send8 = __commonJS((exports, module) => {
|
|
|
68406
68692
|
"4157": "eip155",
|
|
68407
68693
|
"4158": "eip155",
|
|
68408
68694
|
"4202": "canonical",
|
|
68695
|
+
"4326": "canonical",
|
|
68409
68696
|
"4337": "canonical",
|
|
68410
68697
|
"4460": "canonical",
|
|
68411
68698
|
"4653": "eip155",
|
|
@@ -68551,6 +68838,7 @@ var require_multi_send8 = __commonJS((exports, module) => {
|
|
|
68551
68838
|
"97435": "canonical",
|
|
68552
68839
|
"103454": "eip155",
|
|
68553
68840
|
"111188": "canonical",
|
|
68841
|
+
"127823": ["canonical", "eip155"],
|
|
68554
68842
|
"128123": ["eip155", "canonical"],
|
|
68555
68843
|
"167000": ["eip155", "canonical"],
|
|
68556
68844
|
"167008": "canonical",
|
|
@@ -68580,7 +68868,7 @@ var require_multi_send8 = __commonJS((exports, module) => {
|
|
|
68580
68868
|
"660279": "canonical",
|
|
68581
68869
|
"668668": "canonical",
|
|
68582
68870
|
"688688": "eip155",
|
|
68583
|
-
"688689": "canonical",
|
|
68871
|
+
"688689": ["canonical", "eip155"],
|
|
68584
68872
|
"695569": ["eip155", "canonical"],
|
|
68585
68873
|
"713715": ["eip155", "canonical"],
|
|
68586
68874
|
"747474": ["eip155", "canonical"],
|
|
@@ -68589,6 +68877,7 @@ var require_multi_send8 = __commonJS((exports, module) => {
|
|
|
68589
68877
|
"808813": ["eip155", "canonical"],
|
|
68590
68878
|
"810180": "zksync",
|
|
68591
68879
|
"978657": "canonical",
|
|
68880
|
+
"1000101": "canonical",
|
|
68592
68881
|
"4457845": "zksync",
|
|
68593
68882
|
"6038361": ["eip155", "canonical"],
|
|
68594
68883
|
"6985385": "eip155",
|
|
@@ -68698,6 +68987,7 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68698
68987
|
"143": "canonical",
|
|
68699
68988
|
"146": "canonical",
|
|
68700
68989
|
"150": "canonical",
|
|
68990
|
+
"151": "canonical",
|
|
68701
68991
|
"153": "canonical",
|
|
68702
68992
|
"155": "canonical",
|
|
68703
68993
|
"169": "canonical",
|
|
@@ -68756,6 +69046,7 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68756
69046
|
"1329": "canonical",
|
|
68757
69047
|
"1337": "canonical",
|
|
68758
69048
|
"1424": "canonical",
|
|
69049
|
+
"1439": "canonical",
|
|
68759
69050
|
"1442": "canonical",
|
|
68760
69051
|
"1480": "canonical",
|
|
68761
69052
|
"1514": "canonical",
|
|
@@ -68765,6 +69056,7 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68765
69056
|
"1729": "canonical",
|
|
68766
69057
|
"1740": "canonical",
|
|
68767
69058
|
"1750": "canonical",
|
|
69059
|
+
"1776": "canonical",
|
|
68768
69060
|
"1811": "canonical",
|
|
68769
69061
|
"1868": "canonical",
|
|
68770
69062
|
"1923": "canonical",
|
|
@@ -68801,6 +69093,7 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68801
69093
|
"4158": "canonical",
|
|
68802
69094
|
"4162": "canonical",
|
|
68803
69095
|
"4202": "canonical",
|
|
69096
|
+
"4326": "canonical",
|
|
68804
69097
|
"4337": "canonical",
|
|
68805
69098
|
"4488": "canonical",
|
|
68806
69099
|
"4653": "canonical",
|
|
@@ -68940,10 +69233,13 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68940
69233
|
"98985": "canonical",
|
|
68941
69234
|
"105105": "canonical",
|
|
68942
69235
|
"111188": "canonical",
|
|
69236
|
+
"127823": "canonical",
|
|
68943
69237
|
"128123": "canonical",
|
|
68944
69238
|
"167000": "canonical",
|
|
68945
69239
|
"167009": "canonical",
|
|
68946
69240
|
"175188": "canonical",
|
|
69241
|
+
"181228": "canonical",
|
|
69242
|
+
"190415": "canonical",
|
|
68947
69243
|
"200810": "canonical",
|
|
68948
69244
|
"200901": "canonical",
|
|
68949
69245
|
"205205": "canonical",
|
|
@@ -68984,6 +69280,7 @@ var require_multi_send9 = __commonJS((exports, module) => {
|
|
|
68984
69280
|
"7225878": "canonical",
|
|
68985
69281
|
"7777777": "canonical",
|
|
68986
69282
|
"9999999": "canonical",
|
|
69283
|
+
"11142220": "canonical",
|
|
68987
69284
|
"11155111": "canonical",
|
|
68988
69285
|
"11155420": "canonical",
|
|
68989
69286
|
"11155931": "canonical",
|
|
@@ -69057,6 +69354,7 @@ var require_multi_send10 = __commonJS((exports, module) => {
|
|
|
69057
69354
|
"1": "canonical",
|
|
69058
69355
|
"756": "canonical",
|
|
69059
69356
|
"1995": "canonical",
|
|
69357
|
+
"4326": "canonical",
|
|
69060
69358
|
"5424": "canonical",
|
|
69061
69359
|
"5887": "canonical",
|
|
69062
69360
|
"9302": "canonical",
|
|
@@ -69295,6 +69593,7 @@ var require_multi_send_call_only5 = __commonJS((exports, module) => {
|
|
|
69295
69593
|
"4157": "eip155",
|
|
69296
69594
|
"4158": "eip155",
|
|
69297
69595
|
"4202": "canonical",
|
|
69596
|
+
"4326": "canonical",
|
|
69298
69597
|
"4337": "canonical",
|
|
69299
69598
|
"4460": "canonical",
|
|
69300
69599
|
"4653": "eip155",
|
|
@@ -69440,6 +69739,7 @@ var require_multi_send_call_only5 = __commonJS((exports, module) => {
|
|
|
69440
69739
|
"97435": "canonical",
|
|
69441
69740
|
"103454": "eip155",
|
|
69442
69741
|
"111188": "canonical",
|
|
69742
|
+
"127823": ["canonical", "eip155"],
|
|
69443
69743
|
"128123": ["eip155", "canonical"],
|
|
69444
69744
|
"167000": ["eip155", "canonical"],
|
|
69445
69745
|
"167008": "canonical",
|
|
@@ -69469,7 +69769,7 @@ var require_multi_send_call_only5 = __commonJS((exports, module) => {
|
|
|
69469
69769
|
"660279": "canonical",
|
|
69470
69770
|
"668668": "canonical",
|
|
69471
69771
|
"688688": "eip155",
|
|
69472
|
-
"688689": "canonical",
|
|
69772
|
+
"688689": ["canonical", "eip155"],
|
|
69473
69773
|
"695569": ["eip155", "canonical"],
|
|
69474
69774
|
"713715": ["eip155", "canonical"],
|
|
69475
69775
|
"747474": ["eip155", "canonical"],
|
|
@@ -69478,6 +69778,7 @@ var require_multi_send_call_only5 = __commonJS((exports, module) => {
|
|
|
69478
69778
|
"808813": ["eip155", "canonical"],
|
|
69479
69779
|
"810180": "zksync",
|
|
69480
69780
|
"978657": "canonical",
|
|
69781
|
+
"1000101": "canonical",
|
|
69481
69782
|
"4457845": "zksync",
|
|
69482
69783
|
"6038361": ["eip155", "canonical"],
|
|
69483
69784
|
"6985385": "eip155",
|
|
@@ -69582,6 +69883,7 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69582
69883
|
"143": "canonical",
|
|
69583
69884
|
"146": "canonical",
|
|
69584
69885
|
"150": "canonical",
|
|
69886
|
+
"151": "canonical",
|
|
69585
69887
|
"153": "canonical",
|
|
69586
69888
|
"155": "canonical",
|
|
69587
69889
|
"169": "canonical",
|
|
@@ -69640,6 +69942,7 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69640
69942
|
"1329": "canonical",
|
|
69641
69943
|
"1337": "canonical",
|
|
69642
69944
|
"1424": "canonical",
|
|
69945
|
+
"1439": "canonical",
|
|
69643
69946
|
"1442": "canonical",
|
|
69644
69947
|
"1480": "canonical",
|
|
69645
69948
|
"1514": "canonical",
|
|
@@ -69649,6 +69952,7 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69649
69952
|
"1729": "canonical",
|
|
69650
69953
|
"1740": "canonical",
|
|
69651
69954
|
"1750": "canonical",
|
|
69955
|
+
"1776": "canonical",
|
|
69652
69956
|
"1811": "canonical",
|
|
69653
69957
|
"1868": "canonical",
|
|
69654
69958
|
"1923": "canonical",
|
|
@@ -69685,6 +69989,7 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69685
69989
|
"4158": "canonical",
|
|
69686
69990
|
"4162": "canonical",
|
|
69687
69991
|
"4202": "canonical",
|
|
69992
|
+
"4326": "canonical",
|
|
69688
69993
|
"4337": "canonical",
|
|
69689
69994
|
"4488": "canonical",
|
|
69690
69995
|
"4653": "canonical",
|
|
@@ -69824,10 +70129,13 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69824
70129
|
"98985": "canonical",
|
|
69825
70130
|
"105105": "canonical",
|
|
69826
70131
|
"111188": "canonical",
|
|
70132
|
+
"127823": "canonical",
|
|
69827
70133
|
"128123": "canonical",
|
|
69828
70134
|
"167000": "canonical",
|
|
69829
70135
|
"167009": "canonical",
|
|
69830
70136
|
"175188": "canonical",
|
|
70137
|
+
"181228": "canonical",
|
|
70138
|
+
"190415": "canonical",
|
|
69831
70139
|
"200810": "canonical",
|
|
69832
70140
|
"200901": "canonical",
|
|
69833
70141
|
"205205": "canonical",
|
|
@@ -69868,6 +70176,7 @@ var require_multi_send_call_only6 = __commonJS((exports, module) => {
|
|
|
69868
70176
|
"7225878": "canonical",
|
|
69869
70177
|
"7777777": "canonical",
|
|
69870
70178
|
"9999999": "canonical",
|
|
70179
|
+
"11142220": "canonical",
|
|
69871
70180
|
"11155111": "canonical",
|
|
69872
70181
|
"11155420": "canonical",
|
|
69873
70182
|
"11155931": "canonical",
|
|
@@ -69936,6 +70245,7 @@ var require_multi_send_call_only7 = __commonJS((exports, module) => {
|
|
|
69936
70245
|
"1": "canonical",
|
|
69937
70246
|
"756": "canonical",
|
|
69938
70247
|
"1995": "canonical",
|
|
70248
|
+
"4326": "canonical",
|
|
69939
70249
|
"5424": "canonical",
|
|
69940
70250
|
"5887": "canonical",
|
|
69941
70251
|
"9302": "canonical",
|
|
@@ -70169,6 +70479,7 @@ var require_create_call5 = __commonJS((exports, module) => {
|
|
|
70169
70479
|
"4157": "eip155",
|
|
70170
70480
|
"4158": "eip155",
|
|
70171
70481
|
"4202": "canonical",
|
|
70482
|
+
"4326": "canonical",
|
|
70172
70483
|
"4337": "canonical",
|
|
70173
70484
|
"4460": "canonical",
|
|
70174
70485
|
"4653": "eip155",
|
|
@@ -70314,6 +70625,7 @@ var require_create_call5 = __commonJS((exports, module) => {
|
|
|
70314
70625
|
"97435": "canonical",
|
|
70315
70626
|
"103454": "eip155",
|
|
70316
70627
|
"111188": "canonical",
|
|
70628
|
+
"127823": ["canonical", "eip155"],
|
|
70317
70629
|
"128123": ["eip155", "canonical"],
|
|
70318
70630
|
"167000": ["eip155", "canonical"],
|
|
70319
70631
|
"167008": "canonical",
|
|
@@ -70343,7 +70655,7 @@ var require_create_call5 = __commonJS((exports, module) => {
|
|
|
70343
70655
|
"660279": "canonical",
|
|
70344
70656
|
"668668": "canonical",
|
|
70345
70657
|
"688688": "eip155",
|
|
70346
|
-
"688689": "canonical",
|
|
70658
|
+
"688689": ["canonical", "eip155"],
|
|
70347
70659
|
"695569": ["eip155", "canonical"],
|
|
70348
70660
|
"713715": ["eip155", "canonical"],
|
|
70349
70661
|
"747474": ["eip155", "canonical"],
|
|
@@ -70352,6 +70664,7 @@ var require_create_call5 = __commonJS((exports, module) => {
|
|
|
70352
70664
|
"808813": ["eip155", "canonical"],
|
|
70353
70665
|
"810180": "zksync",
|
|
70354
70666
|
"978657": "canonical",
|
|
70667
|
+
"1000101": "canonical",
|
|
70355
70668
|
"4457845": "zksync",
|
|
70356
70669
|
"6038361": ["eip155", "canonical"],
|
|
70357
70670
|
"6985385": "eip155",
|
|
@@ -70509,6 +70822,7 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70509
70822
|
"143": "canonical",
|
|
70510
70823
|
"146": "canonical",
|
|
70511
70824
|
"150": "canonical",
|
|
70825
|
+
"151": "canonical",
|
|
70512
70826
|
"153": "canonical",
|
|
70513
70827
|
"155": "canonical",
|
|
70514
70828
|
"169": "canonical",
|
|
@@ -70567,6 +70881,7 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70567
70881
|
"1329": "canonical",
|
|
70568
70882
|
"1337": "canonical",
|
|
70569
70883
|
"1424": "canonical",
|
|
70884
|
+
"1439": "canonical",
|
|
70570
70885
|
"1442": "canonical",
|
|
70571
70886
|
"1480": "canonical",
|
|
70572
70887
|
"1514": "canonical",
|
|
@@ -70576,6 +70891,7 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70576
70891
|
"1729": "canonical",
|
|
70577
70892
|
"1740": "canonical",
|
|
70578
70893
|
"1750": "canonical",
|
|
70894
|
+
"1776": "canonical",
|
|
70579
70895
|
"1811": "canonical",
|
|
70580
70896
|
"1868": "canonical",
|
|
70581
70897
|
"1923": "canonical",
|
|
@@ -70612,6 +70928,7 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70612
70928
|
"4158": "canonical",
|
|
70613
70929
|
"4162": "canonical",
|
|
70614
70930
|
"4202": "canonical",
|
|
70931
|
+
"4326": "canonical",
|
|
70615
70932
|
"4337": "canonical",
|
|
70616
70933
|
"4488": "canonical",
|
|
70617
70934
|
"4653": "canonical",
|
|
@@ -70751,10 +71068,13 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70751
71068
|
"98985": "canonical",
|
|
70752
71069
|
"105105": "canonical",
|
|
70753
71070
|
"111188": "canonical",
|
|
71071
|
+
"127823": "canonical",
|
|
70754
71072
|
"128123": "canonical",
|
|
70755
71073
|
"167000": "canonical",
|
|
70756
71074
|
"167009": "canonical",
|
|
70757
71075
|
"175188": "canonical",
|
|
71076
|
+
"181228": "canonical",
|
|
71077
|
+
"190415": "canonical",
|
|
70758
71078
|
"200810": "canonical",
|
|
70759
71079
|
"200901": "canonical",
|
|
70760
71080
|
"205205": "canonical",
|
|
@@ -70795,6 +71115,7 @@ var require_create_call6 = __commonJS((exports, module) => {
|
|
|
70795
71115
|
"7225878": "canonical",
|
|
70796
71116
|
"7777777": "canonical",
|
|
70797
71117
|
"9999999": "canonical",
|
|
71118
|
+
"11142220": "canonical",
|
|
70798
71119
|
"11155111": "canonical",
|
|
70799
71120
|
"11155420": "canonical",
|
|
70800
71121
|
"11155931": "canonical",
|
|
@@ -70916,6 +71237,7 @@ var require_create_call7 = __commonJS((exports, module) => {
|
|
|
70916
71237
|
"1": "canonical",
|
|
70917
71238
|
"756": "canonical",
|
|
70918
71239
|
"1995": "canonical",
|
|
71240
|
+
"4326": "canonical",
|
|
70919
71241
|
"5424": "canonical",
|
|
70920
71242
|
"5887": "canonical",
|
|
70921
71243
|
"9302": "canonical",
|
|
@@ -71202,6 +71524,7 @@ var require_sign_message_lib5 = __commonJS((exports, module) => {
|
|
|
71202
71524
|
"4157": "eip155",
|
|
71203
71525
|
"4158": "eip155",
|
|
71204
71526
|
"4202": "canonical",
|
|
71527
|
+
"4326": "canonical",
|
|
71205
71528
|
"4337": "canonical",
|
|
71206
71529
|
"4460": "canonical",
|
|
71207
71530
|
"4653": "eip155",
|
|
@@ -71347,6 +71670,7 @@ var require_sign_message_lib5 = __commonJS((exports, module) => {
|
|
|
71347
71670
|
"97435": "canonical",
|
|
71348
71671
|
"103454": "eip155",
|
|
71349
71672
|
"111188": "canonical",
|
|
71673
|
+
"127823": ["canonical", "eip155"],
|
|
71350
71674
|
"128123": ["eip155", "canonical"],
|
|
71351
71675
|
"167000": ["eip155", "canonical"],
|
|
71352
71676
|
"167008": "canonical",
|
|
@@ -71376,7 +71700,7 @@ var require_sign_message_lib5 = __commonJS((exports, module) => {
|
|
|
71376
71700
|
"660279": "canonical",
|
|
71377
71701
|
"668668": "canonical",
|
|
71378
71702
|
"688688": "eip155",
|
|
71379
|
-
"688689": "canonical",
|
|
71703
|
+
"688689": ["canonical", "eip155"],
|
|
71380
71704
|
"695569": ["eip155", "canonical"],
|
|
71381
71705
|
"713715": ["eip155", "canonical"],
|
|
71382
71706
|
"747474": ["eip155", "canonical"],
|
|
@@ -71385,6 +71709,7 @@ var require_sign_message_lib5 = __commonJS((exports, module) => {
|
|
|
71385
71709
|
"808813": ["eip155", "canonical"],
|
|
71386
71710
|
"810180": "zksync",
|
|
71387
71711
|
"978657": "canonical",
|
|
71712
|
+
"1000101": "canonical",
|
|
71388
71713
|
"4457845": "zksync",
|
|
71389
71714
|
"6038361": ["eip155", "canonical"],
|
|
71390
71715
|
"6985385": "eip155",
|
|
@@ -71521,6 +71846,7 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71521
71846
|
"143": "canonical",
|
|
71522
71847
|
"146": "canonical",
|
|
71523
71848
|
"150": "canonical",
|
|
71849
|
+
"151": "canonical",
|
|
71524
71850
|
"153": "canonical",
|
|
71525
71851
|
"155": "canonical",
|
|
71526
71852
|
"169": "canonical",
|
|
@@ -71579,6 +71905,7 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71579
71905
|
"1329": "canonical",
|
|
71580
71906
|
"1337": "canonical",
|
|
71581
71907
|
"1424": "canonical",
|
|
71908
|
+
"1439": "canonical",
|
|
71582
71909
|
"1442": "canonical",
|
|
71583
71910
|
"1480": "canonical",
|
|
71584
71911
|
"1514": "canonical",
|
|
@@ -71588,6 +71915,7 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71588
71915
|
"1729": "canonical",
|
|
71589
71916
|
"1740": "canonical",
|
|
71590
71917
|
"1750": "canonical",
|
|
71918
|
+
"1776": "canonical",
|
|
71591
71919
|
"1811": "canonical",
|
|
71592
71920
|
"1868": "canonical",
|
|
71593
71921
|
"1923": "canonical",
|
|
@@ -71624,6 +71952,7 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71624
71952
|
"4158": "canonical",
|
|
71625
71953
|
"4162": "canonical",
|
|
71626
71954
|
"4202": "canonical",
|
|
71955
|
+
"4326": "canonical",
|
|
71627
71956
|
"4337": "canonical",
|
|
71628
71957
|
"4488": "canonical",
|
|
71629
71958
|
"4653": "canonical",
|
|
@@ -71763,10 +72092,13 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71763
72092
|
"98985": "canonical",
|
|
71764
72093
|
"105105": "canonical",
|
|
71765
72094
|
"111188": "canonical",
|
|
72095
|
+
"127823": "canonical",
|
|
71766
72096
|
"128123": "canonical",
|
|
71767
72097
|
"167000": "canonical",
|
|
71768
72098
|
"167009": "canonical",
|
|
71769
72099
|
"175188": "canonical",
|
|
72100
|
+
"181228": "canonical",
|
|
72101
|
+
"190415": "canonical",
|
|
71770
72102
|
"200810": "canonical",
|
|
71771
72103
|
"200901": "canonical",
|
|
71772
72104
|
"205205": "canonical",
|
|
@@ -71807,6 +72139,7 @@ var require_sign_message_lib6 = __commonJS((exports, module) => {
|
|
|
71807
72139
|
"7225878": "canonical",
|
|
71808
72140
|
"7777777": "canonical",
|
|
71809
72141
|
"9999999": "canonical",
|
|
72142
|
+
"11142220": "canonical",
|
|
71810
72143
|
"11155111": "canonical",
|
|
71811
72144
|
"11155420": "canonical",
|
|
71812
72145
|
"11155931": "canonical",
|
|
@@ -71907,6 +72240,7 @@ var require_sign_message_lib7 = __commonJS((exports, module) => {
|
|
|
71907
72240
|
"1": "canonical",
|
|
71908
72241
|
"756": "canonical",
|
|
71909
72242
|
"1995": "canonical",
|
|
72243
|
+
"4326": "canonical",
|
|
71910
72244
|
"5424": "canonical",
|
|
71911
72245
|
"5887": "canonical",
|
|
71912
72246
|
"9302": "canonical",
|
|
@@ -72013,6 +72347,7 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72013
72347
|
"143": "canonical",
|
|
72014
72348
|
"146": "canonical",
|
|
72015
72349
|
"150": "canonical",
|
|
72350
|
+
"151": "canonical",
|
|
72016
72351
|
"153": "canonical",
|
|
72017
72352
|
"173": "canonical",
|
|
72018
72353
|
"177": "canonical",
|
|
@@ -72064,6 +72399,7 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72064
72399
|
"1329": "canonical",
|
|
72065
72400
|
"1337": "canonical",
|
|
72066
72401
|
"1424": "canonical",
|
|
72402
|
+
"1439": "canonical",
|
|
72067
72403
|
"1480": "canonical",
|
|
72068
72404
|
"1514": "canonical",
|
|
72069
72405
|
"1516": "canonical",
|
|
@@ -72071,6 +72407,7 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72071
72407
|
"1663": "canonical",
|
|
72072
72408
|
"1740": "canonical",
|
|
72073
72409
|
"1750": "canonical",
|
|
72410
|
+
"1776": "canonical",
|
|
72074
72411
|
"1868": "canonical",
|
|
72075
72412
|
"1923": "canonical",
|
|
72076
72413
|
"1924": "canonical",
|
|
@@ -72101,6 +72438,7 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72101
72438
|
"4157": "canonical",
|
|
72102
72439
|
"4158": "canonical",
|
|
72103
72440
|
"4202": "canonical",
|
|
72441
|
+
"4326": "canonical",
|
|
72104
72442
|
"4488": "canonical",
|
|
72105
72443
|
"4661": "canonical",
|
|
72106
72444
|
"4801": "canonical",
|
|
@@ -72214,10 +72552,13 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72214
72552
|
"98867": "canonical",
|
|
72215
72553
|
"98985": "canonical",
|
|
72216
72554
|
"111188": "canonical",
|
|
72555
|
+
"127823": "canonical",
|
|
72217
72556
|
"128123": "canonical",
|
|
72218
72557
|
"167000": "canonical",
|
|
72219
72558
|
"167009": "canonical",
|
|
72220
72559
|
"175188": "canonical",
|
|
72560
|
+
"181228": "canonical",
|
|
72561
|
+
"190415": "canonical",
|
|
72221
72562
|
"200810": "canonical",
|
|
72222
72563
|
"200901": "canonical",
|
|
72223
72564
|
"210425": "canonical",
|
|
@@ -72250,6 +72591,7 @@ var require_safe_migration = __commonJS((exports, module) => {
|
|
|
72250
72591
|
"5064014": "canonical",
|
|
72251
72592
|
"6985385": "canonical",
|
|
72252
72593
|
"7777777": "canonical",
|
|
72594
|
+
"11142220": "canonical",
|
|
72253
72595
|
"11155111": "canonical",
|
|
72254
72596
|
"11155420": "canonical",
|
|
72255
72597
|
"11155931": "canonical",
|
|
@@ -72410,6 +72752,7 @@ var require_safe_migration2 = __commonJS((exports, module) => {
|
|
|
72410
72752
|
"1": "canonical",
|
|
72411
72753
|
"756": "canonical",
|
|
72412
72754
|
"1995": "canonical",
|
|
72755
|
+
"4326": "canonical",
|
|
72413
72756
|
"5424": "canonical",
|
|
72414
72757
|
"5887": "canonical",
|
|
72415
72758
|
"9302": "canonical",
|
|
@@ -72585,6 +72928,7 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72585
72928
|
"143": "canonical",
|
|
72586
72929
|
"146": "canonical",
|
|
72587
72930
|
"150": "canonical",
|
|
72931
|
+
"151": "canonical",
|
|
72588
72932
|
"153": "canonical",
|
|
72589
72933
|
"173": "canonical",
|
|
72590
72934
|
"177": "canonical",
|
|
@@ -72636,6 +72980,7 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72636
72980
|
"1329": "canonical",
|
|
72637
72981
|
"1337": "canonical",
|
|
72638
72982
|
"1424": "canonical",
|
|
72983
|
+
"1439": "canonical",
|
|
72639
72984
|
"1480": "canonical",
|
|
72640
72985
|
"1514": "canonical",
|
|
72641
72986
|
"1516": "canonical",
|
|
@@ -72643,6 +72988,7 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72643
72988
|
"1663": "canonical",
|
|
72644
72989
|
"1740": "canonical",
|
|
72645
72990
|
"1750": "canonical",
|
|
72991
|
+
"1776": "canonical",
|
|
72646
72992
|
"1868": "canonical",
|
|
72647
72993
|
"1923": "canonical",
|
|
72648
72994
|
"1924": "canonical",
|
|
@@ -72673,6 +73019,7 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72673
73019
|
"4157": "canonical",
|
|
72674
73020
|
"4158": "canonical",
|
|
72675
73021
|
"4202": "canonical",
|
|
73022
|
+
"4326": "canonical",
|
|
72676
73023
|
"4488": "canonical",
|
|
72677
73024
|
"4661": "canonical",
|
|
72678
73025
|
"4801": "canonical",
|
|
@@ -72786,10 +73133,13 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72786
73133
|
"98867": "canonical",
|
|
72787
73134
|
"98985": "canonical",
|
|
72788
73135
|
"111188": "canonical",
|
|
73136
|
+
"127823": "canonical",
|
|
72789
73137
|
"128123": "canonical",
|
|
72790
73138
|
"167000": "canonical",
|
|
72791
73139
|
"167009": "canonical",
|
|
72792
73140
|
"175188": "canonical",
|
|
73141
|
+
"181228": "canonical",
|
|
73142
|
+
"190415": "canonical",
|
|
72793
73143
|
"200810": "canonical",
|
|
72794
73144
|
"200901": "canonical",
|
|
72795
73145
|
"210425": "canonical",
|
|
@@ -72822,6 +73172,7 @@ var require_safe_to_l2_migration = __commonJS((exports, module) => {
|
|
|
72822
73172
|
"5064014": "canonical",
|
|
72823
73173
|
"6985385": "canonical",
|
|
72824
73174
|
"7777777": "canonical",
|
|
73175
|
+
"11142220": "canonical",
|
|
72825
73176
|
"11155111": "canonical",
|
|
72826
73177
|
"11155420": "canonical",
|
|
72827
73178
|
"11155931": "canonical",
|
|
@@ -73064,6 +73415,7 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73064
73415
|
"143": "canonical",
|
|
73065
73416
|
"146": "canonical",
|
|
73066
73417
|
"150": "canonical",
|
|
73418
|
+
"151": "canonical",
|
|
73067
73419
|
"153": "canonical",
|
|
73068
73420
|
"173": "canonical",
|
|
73069
73421
|
"177": "canonical",
|
|
@@ -73115,6 +73467,7 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73115
73467
|
"1329": "canonical",
|
|
73116
73468
|
"1337": "canonical",
|
|
73117
73469
|
"1424": "canonical",
|
|
73470
|
+
"1439": "canonical",
|
|
73118
73471
|
"1480": "canonical",
|
|
73119
73472
|
"1514": "canonical",
|
|
73120
73473
|
"1516": "canonical",
|
|
@@ -73122,6 +73475,7 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73122
73475
|
"1663": "canonical",
|
|
73123
73476
|
"1740": "canonical",
|
|
73124
73477
|
"1750": "canonical",
|
|
73478
|
+
"1776": "canonical",
|
|
73125
73479
|
"1868": "canonical",
|
|
73126
73480
|
"1923": "canonical",
|
|
73127
73481
|
"1924": "canonical",
|
|
@@ -73152,6 +73506,7 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73152
73506
|
"4157": "canonical",
|
|
73153
73507
|
"4158": "canonical",
|
|
73154
73508
|
"4202": "canonical",
|
|
73509
|
+
"4326": "canonical",
|
|
73155
73510
|
"4488": "canonical",
|
|
73156
73511
|
"4661": "canonical",
|
|
73157
73512
|
"4801": "canonical",
|
|
@@ -73265,10 +73620,13 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73265
73620
|
"98867": "canonical",
|
|
73266
73621
|
"98985": "canonical",
|
|
73267
73622
|
"111188": "canonical",
|
|
73623
|
+
"127823": "canonical",
|
|
73268
73624
|
"128123": "canonical",
|
|
73269
73625
|
"167000": "canonical",
|
|
73270
73626
|
"167009": "canonical",
|
|
73271
73627
|
"175188": "canonical",
|
|
73628
|
+
"181228": "canonical",
|
|
73629
|
+
"190415": "canonical",
|
|
73272
73630
|
"200810": "canonical",
|
|
73273
73631
|
"200901": "canonical",
|
|
73274
73632
|
"210425": "canonical",
|
|
@@ -73301,6 +73659,7 @@ var require_safe_to_l2_setup = __commonJS((exports, module) => {
|
|
|
73301
73659
|
"5064014": "canonical",
|
|
73302
73660
|
"6985385": "canonical",
|
|
73303
73661
|
"7777777": "canonical",
|
|
73662
|
+
"11142220": "canonical",
|
|
73304
73663
|
"11155111": "canonical",
|
|
73305
73664
|
"11155420": "canonical",
|
|
73306
73665
|
"11155931": "canonical",
|
|
@@ -73378,6 +73737,7 @@ var require_safe_to_l2_setup2 = __commonJS((exports, module) => {
|
|
|
73378
73737
|
"1": "canonical",
|
|
73379
73738
|
"756": "canonical",
|
|
73380
73739
|
"1995": "canonical",
|
|
73740
|
+
"4326": "canonical",
|
|
73381
73741
|
"5424": "canonical",
|
|
73382
73742
|
"5887": "canonical",
|
|
73383
73743
|
"9302": "canonical",
|
|
@@ -75568,7 +75928,9 @@ var require_allowance_module2 = __commonJS((exports, module) => {
|
|
|
75568
75928
|
"204": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75569
75929
|
"288": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75570
75930
|
"988": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75931
|
+
"999": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75571
75932
|
"3338": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75933
|
+
"4326": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75572
75934
|
"3637": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75573
75935
|
"9745": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
75574
75936
|
"10143": "0xAA46724893dedD72658219405185Fb0Fc91e091C",
|
|
@@ -78370,6 +78732,7 @@ var require_social_recovery_module = __commonJS((exports, module) => {
|
|
|
78370
78732
|
version: "0.1.0",
|
|
78371
78733
|
networkAddresses: {
|
|
78372
78734
|
"10": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897",
|
|
78735
|
+
"4326": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897",
|
|
78373
78736
|
"11155111": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897",
|
|
78374
78737
|
"11155420": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897"
|
|
78375
78738
|
},
|
|
@@ -79357,6 +79720,7 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79357
79720
|
{ chainId: 146n, shortName: "sonic" },
|
|
79358
79721
|
{ chainId: 148n, shortName: "shimmerevm" },
|
|
79359
79722
|
{ chainId: 150n, shortName: "sixt" },
|
|
79723
|
+
{ chainId: 151n, shortName: "rbn" },
|
|
79360
79724
|
{ chainId: 153n, shortName: "rbn-testnet" },
|
|
79361
79725
|
{ chainId: 155n, shortName: "tenet-testnet" },
|
|
79362
79726
|
{ chainId: 169n, shortName: "manta" },
|
|
@@ -79422,7 +79786,7 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79422
79786
|
{ chainId: 970n, shortName: "ccn" },
|
|
79423
79787
|
{ chainId: 988n, shortName: "stable" },
|
|
79424
79788
|
{ chainId: 995n, shortName: "5ire" },
|
|
79425
|
-
{ chainId: 999n, shortName: "
|
|
79789
|
+
{ chainId: 999n, shortName: "hyper_evm" },
|
|
79426
79790
|
{ chainId: 1001n, shortName: "kaia-kairos" },
|
|
79427
79791
|
{ chainId: 1008n, shortName: "eun" },
|
|
79428
79792
|
{ chainId: 1030n, shortName: "cfx" },
|
|
@@ -79510,6 +79874,7 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79510
79874
|
{ chainId: 4158n, shortName: "crossfi" },
|
|
79511
79875
|
{ chainId: 4162n, shortName: "SXR" },
|
|
79512
79876
|
{ chainId: 4202n, shortName: "lisksep" },
|
|
79877
|
+
{ chainId: 4326n, shortName: "megaeth" },
|
|
79513
79878
|
{ chainId: 4337n, shortName: "beam" },
|
|
79514
79879
|
{ chainId: 4460n, shortName: "orderlyl2" },
|
|
79515
79880
|
{ chainId: 4488n, shortName: "HYDRA" },
|
|
@@ -79703,11 +80068,14 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79703
80068
|
{ chainId: 103454n, shortName: "masatest" },
|
|
79704
80069
|
{ chainId: 105105n, shortName: "stratis" },
|
|
79705
80070
|
{ chainId: 111188n, shortName: "re-al" },
|
|
80071
|
+
{ chainId: 127823n, shortName: "etls" },
|
|
79706
80072
|
{ chainId: 128123n, shortName: "etlt" },
|
|
79707
80073
|
{ chainId: 167000n, shortName: "tko-mainnet" },
|
|
79708
80074
|
{ chainId: 167008n, shortName: "tko-katla" },
|
|
79709
80075
|
{ chainId: 167009n, shortName: "tko-hekla" },
|
|
79710
80076
|
{ chainId: 175188n, shortName: "lpy" },
|
|
80077
|
+
{ chainId: 181228n, shortName: "hpp-sepolia" },
|
|
80078
|
+
{ chainId: 190415n, shortName: "hpp-mainnet" },
|
|
79711
80079
|
{ chainId: 200101n, shortName: "milktada" },
|
|
79712
80080
|
{ chainId: 200202n, shortName: "milktalgo" },
|
|
79713
80081
|
{ chainId: 200810n, shortName: "btrt" },
|
|
@@ -79750,6 +80118,7 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79750
80118
|
{ chainId: 839999n, shortName: "txsat" },
|
|
79751
80119
|
{ chainId: 978657n, shortName: "treasure-ruby" },
|
|
79752
80120
|
{ chainId: 984122n, shortName: "forma" },
|
|
80121
|
+
{ chainId: 1000101n, shortName: "xo" },
|
|
79753
80122
|
{ chainId: 1440000n, shortName: "xrplevm" },
|
|
79754
80123
|
{ chainId: 1449000n, shortName: "xrplevmtestnet" },
|
|
79755
80124
|
{ chainId: 1501869n, shortName: "water9" },
|
|
@@ -79763,6 +80132,7 @@ var require_config2 = __commonJS((exports) => {
|
|
|
79763
80132
|
{ chainId: 7225878n, shortName: "saakuru" },
|
|
79764
80133
|
{ chainId: 7777777n, shortName: "zora" },
|
|
79765
80134
|
{ chainId: 9999999n, shortName: "fluence" },
|
|
80135
|
+
{ chainId: 11142220n, shortName: "celo-sep" },
|
|
79766
80136
|
{ chainId: 11155111n, shortName: "sep" },
|
|
79767
80137
|
{ chainId: 11155420n, shortName: "opsep" },
|
|
79768
80138
|
{ chainId: 11155931n, shortName: "rise-testnet" },
|
|
@@ -80984,7 +81354,7 @@ var require_apeChain = __commonJS((exports) => {
|
|
|
80984
81354
|
var sourceId = 42161;
|
|
80985
81355
|
exports.apeChain = (0, defineChain_js_1.defineChain)({
|
|
80986
81356
|
id: 33139,
|
|
80987
|
-
name: "
|
|
81357
|
+
name: "ApeChain",
|
|
80988
81358
|
nativeCurrency: {
|
|
80989
81359
|
name: "ApeCoin",
|
|
80990
81360
|
symbol: "APE",
|
|
@@ -85953,6 +86323,32 @@ var require_etherlink = __commonJS((exports) => {
|
|
|
85953
86323
|
});
|
|
85954
86324
|
});
|
|
85955
86325
|
|
|
86326
|
+
// ../../node_modules/viem/_cjs/chains/definitions/etherlinkShadownetTestnet.js
|
|
86327
|
+
var require_etherlinkShadownetTestnet = __commonJS((exports) => {
|
|
86328
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86329
|
+
exports.etherlinkShadownetTestnet = undefined;
|
|
86330
|
+
var defineChain_js_1 = require_defineChain();
|
|
86331
|
+
exports.etherlinkShadownetTestnet = (0, defineChain_js_1.defineChain)({
|
|
86332
|
+
id: 127823,
|
|
86333
|
+
name: "Etherlink Shadownet Testnet",
|
|
86334
|
+
nativeCurrency: {
|
|
86335
|
+
decimals: 18,
|
|
86336
|
+
name: "tez",
|
|
86337
|
+
symbol: "XTZ"
|
|
86338
|
+
},
|
|
86339
|
+
rpcUrls: {
|
|
86340
|
+
default: { http: ["https://node.shadownet.etherlink.com"] }
|
|
86341
|
+
},
|
|
86342
|
+
blockExplorers: {
|
|
86343
|
+
default: {
|
|
86344
|
+
name: "Etherlink Shadownet Testnet Explorer",
|
|
86345
|
+
url: "https://shadownet.explorer.etherlink.com"
|
|
86346
|
+
}
|
|
86347
|
+
},
|
|
86348
|
+
testnet: true
|
|
86349
|
+
});
|
|
86350
|
+
});
|
|
86351
|
+
|
|
85956
86352
|
// ../../node_modules/viem/_cjs/chains/definitions/etherlinkTestnet.js
|
|
85957
86353
|
var require_etherlinkTestnet = __commonJS((exports) => {
|
|
85958
86354
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -88221,6 +88617,35 @@ var require_hela = __commonJS((exports) => {
|
|
|
88221
88617
|
});
|
|
88222
88618
|
});
|
|
88223
88619
|
|
|
88620
|
+
// ../../node_modules/viem/_cjs/chains/definitions/heliosTestnet.js
|
|
88621
|
+
var require_heliosTestnet = __commonJS((exports) => {
|
|
88622
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
88623
|
+
exports.heliosTestnet = undefined;
|
|
88624
|
+
var defineChain_js_1 = require_defineChain();
|
|
88625
|
+
exports.heliosTestnet = (0, defineChain_js_1.defineChain)({
|
|
88626
|
+
id: 42000,
|
|
88627
|
+
name: "Helios Testnet",
|
|
88628
|
+
network: "helios-testnet",
|
|
88629
|
+
nativeCurrency: {
|
|
88630
|
+
symbol: "HLS",
|
|
88631
|
+
name: "Helios",
|
|
88632
|
+
decimals: 18
|
|
88633
|
+
},
|
|
88634
|
+
rpcUrls: {
|
|
88635
|
+
default: {
|
|
88636
|
+
http: ["https://testnet1.helioschainlabs.org"]
|
|
88637
|
+
}
|
|
88638
|
+
},
|
|
88639
|
+
blockExplorers: {
|
|
88640
|
+
default: {
|
|
88641
|
+
name: "Helios Testnet Explorer",
|
|
88642
|
+
url: "https://explorer.helioschainlabs.org/"
|
|
88643
|
+
}
|
|
88644
|
+
},
|
|
88645
|
+
testnet: true
|
|
88646
|
+
});
|
|
88647
|
+
});
|
|
88648
|
+
|
|
88224
88649
|
// ../../node_modules/viem/_cjs/chains/definitions/hemi.js
|
|
88225
88650
|
var require_hemi = __commonJS((exports) => {
|
|
88226
88651
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -88586,6 +89011,30 @@ var require_hychainTestnet = __commonJS((exports) => {
|
|
|
88586
89011
|
});
|
|
88587
89012
|
});
|
|
88588
89013
|
|
|
89014
|
+
// ../../node_modules/viem/_cjs/chains/definitions/hyperEvm.js
|
|
89015
|
+
var require_hyperEvm = __commonJS((exports) => {
|
|
89016
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89017
|
+
exports.hyperEvm = undefined;
|
|
89018
|
+
var defineChain_js_1 = require_defineChain();
|
|
89019
|
+
exports.hyperEvm = (0, defineChain_js_1.defineChain)({
|
|
89020
|
+
id: 999,
|
|
89021
|
+
name: "HyperEVM",
|
|
89022
|
+
nativeCurrency: { name: "HYPE", symbol: "HYPE", decimals: 18 },
|
|
89023
|
+
blockExplorers: {
|
|
89024
|
+
default: {
|
|
89025
|
+
name: "HyperEVMScan",
|
|
89026
|
+
url: "https://hyperevmscan.io"
|
|
89027
|
+
}
|
|
89028
|
+
},
|
|
89029
|
+
rpcUrls: {
|
|
89030
|
+
default: {
|
|
89031
|
+
http: ["https://rpc.hyperliquid.xyz/evm"]
|
|
89032
|
+
}
|
|
89033
|
+
},
|
|
89034
|
+
testnet: false
|
|
89035
|
+
});
|
|
89036
|
+
});
|
|
89037
|
+
|
|
88589
89038
|
// ../../node_modules/viem/_cjs/chains/definitions/hyperliquidEvmTestnet.js
|
|
88590
89039
|
var require_hyperliquidEvmTestnet = __commonJS((exports) => {
|
|
88591
89040
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -89157,6 +89606,46 @@ var require_iSunCoin = __commonJS((exports) => {
|
|
|
89157
89606
|
});
|
|
89158
89607
|
});
|
|
89159
89608
|
|
|
89609
|
+
// ../../node_modules/viem/_cjs/chains/definitions/jasmyChain.js
|
|
89610
|
+
var require_jasmyChain = __commonJS((exports) => {
|
|
89611
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89612
|
+
exports.jasmyChain = undefined;
|
|
89613
|
+
var defineChain_js_1 = require_defineChain();
|
|
89614
|
+
exports.jasmyChain = (0, defineChain_js_1.defineChain)({
|
|
89615
|
+
id: 680,
|
|
89616
|
+
name: "Jasmy Chain",
|
|
89617
|
+
network: "jasmyChain",
|
|
89618
|
+
nativeCurrency: { name: "JasmyCoin", symbol: "JASMY", decimals: 18 },
|
|
89619
|
+
rpcUrls: {
|
|
89620
|
+
default: {
|
|
89621
|
+
http: ["https://rpc.jasmychain.io"],
|
|
89622
|
+
webSocket: ["wss://rpc.jasmychain.io"]
|
|
89623
|
+
}
|
|
89624
|
+
},
|
|
89625
|
+
testnet: false
|
|
89626
|
+
});
|
|
89627
|
+
});
|
|
89628
|
+
|
|
89629
|
+
// ../../node_modules/viem/_cjs/chains/definitions/jasmyChainTestnet.js
|
|
89630
|
+
var require_jasmyChainTestnet = __commonJS((exports) => {
|
|
89631
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89632
|
+
exports.jasmyChainTestnet = undefined;
|
|
89633
|
+
var defineChain_js_1 = require_defineChain();
|
|
89634
|
+
exports.jasmyChainTestnet = (0, defineChain_js_1.defineChain)({
|
|
89635
|
+
id: 681,
|
|
89636
|
+
name: "Jasmy Chain Testnet",
|
|
89637
|
+
network: "jasmyChainTestnet",
|
|
89638
|
+
nativeCurrency: { name: "JasmyCoin", symbol: "JASMY", decimals: 18 },
|
|
89639
|
+
rpcUrls: {
|
|
89640
|
+
default: {
|
|
89641
|
+
http: ["https://rpc_testnet.jasmychain.io"],
|
|
89642
|
+
webSocket: ["wss://rpc_testnet.jasmychain.io"]
|
|
89643
|
+
}
|
|
89644
|
+
},
|
|
89645
|
+
testnet: true
|
|
89646
|
+
});
|
|
89647
|
+
});
|
|
89648
|
+
|
|
89160
89649
|
// ../../node_modules/viem/_cjs/chains/definitions/jbc.js
|
|
89161
89650
|
var require_jbc = __commonJS((exports) => {
|
|
89162
89651
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -89877,7 +90366,7 @@ var require_katana = __commonJS((exports) => {
|
|
|
89877
90366
|
blockExplorers: {
|
|
89878
90367
|
default: {
|
|
89879
90368
|
name: "katana explorer",
|
|
89880
|
-
url: "https://
|
|
90369
|
+
url: "https://katanascan.com"
|
|
89881
90370
|
}
|
|
89882
90371
|
},
|
|
89883
90372
|
testnet: false
|
|
@@ -92283,6 +92772,47 @@ var require_modeTestnet = __commonJS((exports) => {
|
|
|
92283
92772
|
});
|
|
92284
92773
|
});
|
|
92285
92774
|
|
|
92775
|
+
// ../../node_modules/viem/_cjs/chains/definitions/monad.js
|
|
92776
|
+
var require_monad = __commonJS((exports) => {
|
|
92777
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
92778
|
+
exports.monad = undefined;
|
|
92779
|
+
var defineChain_js_1 = require_defineChain();
|
|
92780
|
+
exports.monad = (0, defineChain_js_1.defineChain)({
|
|
92781
|
+
id: 143,
|
|
92782
|
+
name: "Monad",
|
|
92783
|
+
blockTime: 400,
|
|
92784
|
+
nativeCurrency: {
|
|
92785
|
+
name: "Monad",
|
|
92786
|
+
symbol: "MON",
|
|
92787
|
+
decimals: 18
|
|
92788
|
+
},
|
|
92789
|
+
rpcUrls: {
|
|
92790
|
+
default: {
|
|
92791
|
+
http: ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"],
|
|
92792
|
+
webSocket: ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"]
|
|
92793
|
+
}
|
|
92794
|
+
},
|
|
92795
|
+
blockExplorers: {
|
|
92796
|
+
default: {
|
|
92797
|
+
name: "MonadVision",
|
|
92798
|
+
url: "https://monadvision.com"
|
|
92799
|
+
},
|
|
92800
|
+
monadscan: {
|
|
92801
|
+
name: "Monadscan",
|
|
92802
|
+
url: "https://monadscan.com",
|
|
92803
|
+
apiUrl: "https://api.monadscan.com/api"
|
|
92804
|
+
}
|
|
92805
|
+
},
|
|
92806
|
+
testnet: false,
|
|
92807
|
+
contracts: {
|
|
92808
|
+
multicall3: {
|
|
92809
|
+
address: "0xcA11bde05977b3631167028862bE2a173976CA11",
|
|
92810
|
+
blockCreated: 9248132
|
|
92811
|
+
}
|
|
92812
|
+
}
|
|
92813
|
+
});
|
|
92814
|
+
});
|
|
92815
|
+
|
|
92286
92816
|
// ../../node_modules/viem/_cjs/chains/definitions/monadTestnet.js
|
|
92287
92817
|
var require_monadTestnet = __commonJS((exports) => {
|
|
92288
92818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -94466,6 +94996,62 @@ var require_polynomialSepolia = __commonJS((exports) => {
|
|
|
94466
94996
|
});
|
|
94467
94997
|
});
|
|
94468
94998
|
|
|
94999
|
+
// ../../node_modules/viem/_cjs/chains/definitions/potos.js
|
|
95000
|
+
var require_potos = __commonJS((exports) => {
|
|
95001
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
95002
|
+
exports.potos = undefined;
|
|
95003
|
+
var defineChain_js_1 = require_defineChain();
|
|
95004
|
+
exports.potos = (0, defineChain_js_1.defineChain)({
|
|
95005
|
+
id: 60603,
|
|
95006
|
+
name: "POTOS Mainnet",
|
|
95007
|
+
nativeCurrency: {
|
|
95008
|
+
decimals: 18,
|
|
95009
|
+
name: "POTOS Token",
|
|
95010
|
+
symbol: "POT"
|
|
95011
|
+
},
|
|
95012
|
+
rpcUrls: {
|
|
95013
|
+
default: {
|
|
95014
|
+
http: ["https://rpc.potos.hk"]
|
|
95015
|
+
}
|
|
95016
|
+
},
|
|
95017
|
+
blockExplorers: {
|
|
95018
|
+
default: {
|
|
95019
|
+
name: "POTOS Mainnet explorer",
|
|
95020
|
+
url: "https://scan.potos.hk"
|
|
95021
|
+
}
|
|
95022
|
+
},
|
|
95023
|
+
testnet: false
|
|
95024
|
+
});
|
|
95025
|
+
});
|
|
95026
|
+
|
|
95027
|
+
// ../../node_modules/viem/_cjs/chains/definitions/potosTestnet.js
|
|
95028
|
+
var require_potosTestnet = __commonJS((exports) => {
|
|
95029
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
95030
|
+
exports.potosTestnet = undefined;
|
|
95031
|
+
var defineChain_js_1 = require_defineChain();
|
|
95032
|
+
exports.potosTestnet = (0, defineChain_js_1.defineChain)({
|
|
95033
|
+
id: 60600,
|
|
95034
|
+
name: "POTOS Testnet",
|
|
95035
|
+
nativeCurrency: {
|
|
95036
|
+
decimals: 18,
|
|
95037
|
+
name: "POTOS Token",
|
|
95038
|
+
symbol: "POT"
|
|
95039
|
+
},
|
|
95040
|
+
rpcUrls: {
|
|
95041
|
+
default: {
|
|
95042
|
+
http: ["https://rpc-testnet.potos.hk"]
|
|
95043
|
+
}
|
|
95044
|
+
},
|
|
95045
|
+
blockExplorers: {
|
|
95046
|
+
default: {
|
|
95047
|
+
name: "POTOS Testnet explorer",
|
|
95048
|
+
url: "https://scan-testnet.potos.hk"
|
|
95049
|
+
}
|
|
95050
|
+
},
|
|
95051
|
+
testnet: true
|
|
95052
|
+
});
|
|
95053
|
+
});
|
|
95054
|
+
|
|
94469
95055
|
// ../../node_modules/viem/_cjs/chains/definitions/premiumBlock.js
|
|
94470
95056
|
var require_premiumBlock = __commonJS((exports) => {
|
|
94471
95057
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -96159,6 +96745,30 @@ var require_sidra = __commonJS((exports) => {
|
|
|
96159
96745
|
});
|
|
96160
96746
|
});
|
|
96161
96747
|
|
|
96748
|
+
// ../../node_modules/viem/_cjs/chains/definitions/silentdata.js
|
|
96749
|
+
var require_silentdata = __commonJS((exports) => {
|
|
96750
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96751
|
+
exports.silentData = undefined;
|
|
96752
|
+
var defineChain_js_1 = require_defineChain();
|
|
96753
|
+
exports.silentData = (0, defineChain_js_1.defineChain)({
|
|
96754
|
+
id: 380929,
|
|
96755
|
+
name: "Silent Data Mainnet",
|
|
96756
|
+
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
|
|
96757
|
+
rpcUrls: {
|
|
96758
|
+
default: {
|
|
96759
|
+
http: ["https://mainnet.silentdata.com"]
|
|
96760
|
+
}
|
|
96761
|
+
},
|
|
96762
|
+
blockExplorers: {
|
|
96763
|
+
default: {
|
|
96764
|
+
name: "Silent Data Mainnet Explorer",
|
|
96765
|
+
url: "https://explorer-mainnet.rollup.silentdata.com"
|
|
96766
|
+
}
|
|
96767
|
+
},
|
|
96768
|
+
testnet: false
|
|
96769
|
+
});
|
|
96770
|
+
});
|
|
96771
|
+
|
|
96162
96772
|
// ../../node_modules/viem/_cjs/chains/definitions/silicon.js
|
|
96163
96773
|
var require_silicon = __commonJS((exports) => {
|
|
96164
96774
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -99815,6 +100425,66 @@ var require_xLayerTestnet = __commonJS((exports) => {
|
|
|
99815
100425
|
exports.x1Testnet = exports.xLayerTestnet;
|
|
99816
100426
|
});
|
|
99817
100427
|
|
|
100428
|
+
// ../../node_modules/viem/_cjs/chains/definitions/xoneMainnet.js
|
|
100429
|
+
var require_xoneMainnet = __commonJS((exports) => {
|
|
100430
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
100431
|
+
exports.xoneMainnet = undefined;
|
|
100432
|
+
var defineChain_js_1 = require_defineChain();
|
|
100433
|
+
exports.xoneMainnet = (0, defineChain_js_1.defineChain)({
|
|
100434
|
+
id: 3721,
|
|
100435
|
+
name: "Xone Chain Mainnet",
|
|
100436
|
+
nativeCurrency: {
|
|
100437
|
+
decimals: 18,
|
|
100438
|
+
name: "XOC",
|
|
100439
|
+
symbol: "XOC"
|
|
100440
|
+
},
|
|
100441
|
+
rpcUrls: {
|
|
100442
|
+
default: { http: ["https://rpc.xone.org"] }
|
|
100443
|
+
},
|
|
100444
|
+
blockExplorers: {
|
|
100445
|
+
default: {
|
|
100446
|
+
name: "Xone Mainnet Explorer",
|
|
100447
|
+
url: "https://xonescan.com",
|
|
100448
|
+
apiUrl: "http://api.xonescan.com/api"
|
|
100449
|
+
}
|
|
100450
|
+
},
|
|
100451
|
+
testnet: false
|
|
100452
|
+
});
|
|
100453
|
+
});
|
|
100454
|
+
|
|
100455
|
+
// ../../node_modules/viem/_cjs/chains/definitions/xoneTestnet.js
|
|
100456
|
+
var require_xoneTestnet = __commonJS((exports) => {
|
|
100457
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
100458
|
+
exports.xoneTestnet = undefined;
|
|
100459
|
+
var defineChain_js_1 = require_defineChain();
|
|
100460
|
+
exports.xoneTestnet = (0, defineChain_js_1.defineChain)({
|
|
100461
|
+
id: 33772211,
|
|
100462
|
+
name: "Xone Chain Testnet",
|
|
100463
|
+
nativeCurrency: {
|
|
100464
|
+
decimals: 18,
|
|
100465
|
+
name: "XOC",
|
|
100466
|
+
symbol: "XOC"
|
|
100467
|
+
},
|
|
100468
|
+
rpcUrls: {
|
|
100469
|
+
default: {
|
|
100470
|
+
http: [
|
|
100471
|
+
"https://rpc-testnet.xone.org",
|
|
100472
|
+
"https://rpc-testnet.xone.plus",
|
|
100473
|
+
"https://rpc-testnet.knight.center"
|
|
100474
|
+
]
|
|
100475
|
+
}
|
|
100476
|
+
},
|
|
100477
|
+
blockExplorers: {
|
|
100478
|
+
default: {
|
|
100479
|
+
name: "Xone Testnet Explorer",
|
|
100480
|
+
url: "https://testnet.xonescan.com",
|
|
100481
|
+
apiUrl: "http://api.testnet.xonescan.com/api"
|
|
100482
|
+
}
|
|
100483
|
+
},
|
|
100484
|
+
testnet: true
|
|
100485
|
+
});
|
|
100486
|
+
});
|
|
100487
|
+
|
|
99818
100488
|
// ../../node_modules/viem/_cjs/chains/definitions/xphereMainnet.js
|
|
99819
100489
|
var require_xphereMainnet = __commonJS((exports) => {
|
|
99820
100490
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -100916,17 +101586,17 @@ var require_chains = __commonJS((exports) => {
|
|
|
100916
101586
|
exports.base = exports.bahamut = exports.b3Sepolia = exports.b3 = exports.avalancheFuji = exports.avalanche = exports.autheoTestnet = exports.auroria = exports.auroraTestnet = exports.aurora = exports.atletaOlympia = exports.astarZkyoto = exports.astarZkEVM = exports.astar = exports.assetChainTestnet = exports.assetChain = exports.artheraTestnet = exports.arthera = exports.artelaTestnet = exports.areum = exports.areonNetworkTestnet = exports.areonNetwork = exports.arenaz = exports.arcTestnet = exports.arbitrumSepolia = exports.arbitrumNova = exports.arbitrumGoerli = exports.arbitrum = exports.apexTestnet = exports.apeChain = exports.anvil = exports.ancient8Sepolia = exports.ancient8 = exports.alienxHalTestnet = exports.alienx = exports.alephZeroTestnet = exports.alephZero = exports.aioz = exports.agungTestnet = exports.adf = exports.acria = exports.acala = exports.abstractTestnet = exports.abstract = exports.abey = exports.fireChain = exports.zeroGTestnet = exports.zeroGMainnet = exports.zeroGGalileoTestnet = exports.zeroG = undefined;
|
|
100917
101587
|
exports.celoAlfajores = exports.celo = exports.canto = exports.cannon = exports.bxnTestnet = exports.bxn = exports.btrTestnet = exports.btr = exports.bsquaredTestnet = exports.bsquared = exports.bscTestnet = exports.bscGreenfield = exports.bsc = exports.bronosTestnet = exports.bronos = exports.bounceBitTestnet = exports.bounceBit = exports.botanixTestnet = exports.botanix = exports.boolBetaMainnet = exports.bobSepolia = exports.bobaSepolia = exports.boba = exports.bob = exports.blastSepolia = exports.blast = exports.bitTorrentTestnet = exports.bitTorrent = exports.bitrock = exports.bitlayerTestnet = exports.bitlayer = exports.bitkubTestnet = exports.bitkub = exports.bitgert = exports.birdlayer = exports.bifrost = exports.bevmMainnet = exports.berachainTestnetbArtio = exports.berachainTestnet = exports.berachainBepolia = exports.berachain = exports.bearNetworkChainTestnet = exports.bearNetworkChainMainnet = exports.beamTestnet = exports.beam = exports.baseSepoliaPreconf = exports.baseSepolia = exports.baseGoerli = exports.basecampTestnet = exports.basePreconf = undefined;
|
|
100918
101588
|
exports.dustboyIoT = exports.dreyerxTestnet = exports.dreyerxMainnet = exports.dosChainTestnet = exports.dosChain = exports.donatuz = exports.domaTestnet = exports.dogechain = exports.dodochainTestnet = exports.disChain = exports.diode = exports.dfk = exports.degen = exports.defichainEvmTestnet = exports.defichainEvm = exports.dchainTestnet = exports.dchain = exports.dbkchain = exports.darwinia = exports.dailyNetworkTestnet = exports.dailyNetwork = exports.cyberTestnet = exports.cyber = exports.curtis = exports.crossfi = exports.crossbell = exports.cronoszkEVMTestnet = exports.cronoszkEVM = exports.cronosTestnet = exports.cronos = exports.creditCoin3Testnet = exports.creditCoin3Mainnet = exports.creditCoin3Devnet = exports.creatorTestnet = exports.crab = exports.cornTestnet = exports.corn = exports.coreTestnet2 = exports.coreTestnet1 = exports.coreDao = exports.confluxESpaceTestnet = exports.confluxESpace = exports.coinex = exports.coinbit = exports.classic = exports.citreaTestnet = exports.chips = exports.chiliz = exports.chang = exports.celoSepolia = undefined;
|
|
100919
|
-
exports.
|
|
100920
|
-
exports.
|
|
100921
|
-
exports.
|
|
100922
|
-
exports.
|
|
100923
|
-
exports.
|
|
100924
|
-
exports.
|
|
100925
|
-
exports.
|
|
100926
|
-
exports.
|
|
100927
|
-
exports.
|
|
100928
|
-
exports.
|
|
100929
|
-
exports.zoraTestnet = exports.zoraSepolia = exports.zora = exports.zksyncSepoliaTestnet = undefined;
|
|
101589
|
+
exports.fluenceStage = exports.fluence = exports.flowTestnet = exports.flowPreviewnet = exports.flowMainnet = exports.flareTestnet = exports.flare = exports.flame = exports.filecoinHyperspace = exports.filecoinCalibration = exports.filecoin = exports.fibo = exports.fantomTestnet = exports.fantomSonicTestnet = exports.fantom = exports.exsatTestnet = exports.exsat = exports.expanse = exports.excelonMainnet = exports.evmosTestnet = exports.evmos = exports.etp = exports.ethernity = exports.etherlinkTestnet = exports.etherlinkShadownetTestnet = exports.etherlink = exports.eteria = exports.eosTestnet = exports.eos = exports.eon = exports.enuls = exports.eniTestnet = exports.eni = exports.energy = exports.elysiumTestnet = exports.electroneumTestnet = exports.electroneum = exports.elastosTestnet = exports.elastos = exports.ektaTestnet = exports.ekta = exports.eduChainTestnet = exports.eduChain = exports.edgewareTestnet = exports.edgeware = exports.edgelessTestnet = exports.edgeless = exports.edexaTestnet = exports.edexa = exports.dymension = undefined;
|
|
101590
|
+
exports.hemi = exports.heliosTestnet = exports.hela = exports.hederaTestnet = exports.hederaPreviewnet = exports.hedera = exports.haustTestnet = exports.hashkeyTestnet = exports.hashkey = exports.harmonyOne = exports.hardhat = exports.haqqTestedge2 = exports.haqqMainnet = exports.happychainTestnet = exports.ham = exports.guruTestnet = exports.guruNetwork = exports.gunz = exports.gravity = exports.graphiteTestnet = exports.graphite = exports.goerli = exports.godwoken = exports.goChain = exports.gobi = exports.goat = exports.gnosisChiado = exports.gnosis = exports.glideL2Protocol = exports.glideL1Protocol = exports.giwaSepolia = exports.genesys = exports.geist = exports.gatechain = exports.garnet = exports.fusionTestnet = exports.fusion = exports.fuseSparknet = exports.fuse = exports.funkiSepolia = exports.funkiMainnet = exports.fraxtalTestnet = exports.fraxtal = exports.foundry = exports.forta = exports.formTestnet = exports.forma = exports.form = exports.fluentTestnet = exports.fluenceTestnet = undefined;
|
|
101591
|
+
exports.juneoSocotraTestnet = exports.juneoSGD1Chain = exports.juneomBTC1Chain = exports.juneoLTC1Chain = exports.juneoLINK1Chain = exports.juneoGLD1Chain = exports.juneoEUR1Chain = exports.juneoDOGE1Chain = exports.juneoDAI1Chain = exports.juneoBCH1Chain = exports.juneo = exports.jovaySepolia = exports.jovay = exports.jocTestnet = exports.jocMainnet = exports.jbcTestnet = exports.jbc = exports.jasmyChainTestnet = exports.jasmyChain = exports.iSunCoin = exports.iotexTestnet = exports.iotex = exports.iotaTestnet = exports.iota = exports.inkSepolia = exports.ink = exports.injectiveTestnet = exports.injective = exports.initVerseGenesis = exports.initVerse = exports.inEVM = exports.immutableZkEvmTestnet = exports.immutableZkEvm = exports.idchain = exports.icbNetwork = exports.hyperliquidEvmTestnet = exports.hyperliquid = exports.hyperEvm = exports.hychainTestnet = exports.hychain = exports.humanodeTestnet5 = exports.humanode = exports.humanityTestnet = exports.humanity = exports.huddle01Testnet = exports.huddle01Mainnet = exports.hpb = exports.hoodi = exports.holesky = exports.hemiSepolia = undefined;
|
|
101592
|
+
exports.mantle = exports.mantaTestnet = exports.mantaSepoliaTestnet = exports.manta = exports.mandala = exports.mainnet = exports.lyra = exports.lycan = exports.lumozTestnet = exports.lumoz = exports.lumiaTestnet = exports.lumiaMainnet = exports.luksoTestnet = exports.lukso = exports.loop = exports.localhost = exports.loadAlphanet = exports.liskSepolia = exports.lisk = exports.lineaTestnet = exports.lineaSepolia = exports.lineaGoerli = exports.linea = exports.lightlinkPhoenix = exports.lightlinkPegasus = exports.lestnet = exports.lensTestnet = exports.lens = exports.lavita = exports.l3xTestnet = exports.l3x = exports.kromaSepolia = exports.kroma = exports.koi = exports.klaytnBaobab = exports.klaytn = exports.kinto = exports.kiiTestnetOro = exports.kcc = exports.kavaTestnet = exports.kava = exports.katana = exports.karura = exports.kardiaChain = exports.kakarotStarknetSepolia = exports.kakarotSepolia = exports.kairos = exports.kaia = exports.juneoUSDT1Chain = exports.juneoUSD1Chain = undefined;
|
|
101593
|
+
exports.nexi = exports.newton = exports.neoxT4 = exports.neoxMainnet = exports.neonMainnet = exports.neonDevnet = exports.nearTestnet = exports.near = exports.nautilus = exports.nahmii = exports.morphSepolia = exports.morphHolesky = exports.morph = exports.moonriver = exports.moonbeamDev = exports.moonbeam = exports.moonbaseAlpha = exports.monadTestnet = exports.monad = exports.modeTestnet = exports.mode = exports.mitosisTestnet = exports.mintSepoliaTestnet = exports.mint = exports.mevTestnet = exports.mev = exports.metisSepolia = exports.metisGoerli = exports.metis = exports.meterTestnet = exports.meter = exports.metalL2 = exports.metadium = exports.metachainIstanbul = exports.metachain = exports.merlinErigonTestnet = exports.merlin = exports.formicarium = exports.memecore = exports.meld = exports.mekong = exports.megaethTestnet = exports.mchVerse = exports.matchainTestnet = exports.matchain = exports.mapProtocol = exports.mantraEVM = exports.mantraDuKongEVMTestnet = exports.mantleTestnet = exports.mantleSepoliaTestnet = undefined;
|
|
101594
|
+
exports.polynomialSepolia = exports.polynomial = exports.polygonZkEvmTestnet = exports.polygonZkEvmCardona = exports.polygonZkEvm = exports.polygonMumbai = exports.polygonAmoy = exports.polygon = exports.polterTestnet = exports.plumeTestnet = exports.plumeSepolia = exports.plumeMainnet = exports.plumeDevnet = exports.plume = exports.plinga = exports.playfiAlbireo = exports.plasmaTestnet = exports.plasmaDevnet = exports.plasma = exports.planq = exports.phoenix = exports.pgnTestnet = exports.pgn = exports.peaq = exports.palmTestnet = exports.palm = exports.otimDevnet = exports.orderlySepolia = exports.orderly = exports.optopiaTestnet = exports.optopia = exports.optimismSepolia = exports.optimismGoerli = exports.optimism = exports.openledger = exports.opBNBTestnet = exports.opBNB = exports.oortMainnetDev = exports.oneWorld = exports.omniOmega = exports.omni = exports.omax = exports.okc = exports.odysseyTestnet = exports.oasys = exports.oasisTestnet = exports.nomina = exports.nitrographTestnet = exports.nibiru = exports.nexilix = undefined;
|
|
101595
|
+
exports.shibarium = exports.shardeumSphinx = exports.shardeum = exports.shapeSepolia = exports.shape = exports.sepolia = exports.seiTestnet = exports.seismicDevnet = exports.seiDevnet = exports.sei = exports.scrollSepolia = exports.satoshiVMTestnet = exports.satoshiVM = exports.sapphireTestnet = exports.sapphire = exports.sanko = exports.saigon = exports.saga = exports.saakuru = exports.rss3Sepolia = exports.rss3 = exports.rootstockTestnet = exports.rootstock = exports.rootPorcini = exports.root = exports.ronin = exports.rolluxTestnet = exports.rollux = exports.rivalz = exports.riseTestnet = exports.reyaNetwork = exports.rei = exports.redstone = exports.reddioSepolia = exports.reddio = exports.redbellyTestnet = exports.redbellyMainnet = exports.real = exports.quaiTestnet = exports.quai = exports.qTestnet = exports.qMainnet = exports.ql1 = exports.pyrope = exports.pumpfiTestnet = exports.pulsechainV4 = exports.pulsechain = exports.premiumBlockTestnet = exports.potosTestnet = exports.potos = undefined;
|
|
101596
|
+
exports.superseed = exports.superposition = exports.superlumio = exports.stratis = exports.storyTestnet = exports.storyOdyssey = exports.storyAeneid = exports.story = exports.step = exports.statusNetworkSepolia = exports.statusSepolia = exports.spicy = exports.sovaSepolia = exports.sova = exports.sophonTestnet = exports.sophon = exports.sonicTestnet = exports.sonicBlazeTestnet = exports.sonic = exports.songbirdTestnet = exports.songbird = exports.soneiumMinato = exports.soneium = exports.somniaTestnet = exports.snaxTestnet = exports.snax = exports.sketchpad = exports.skaleTitanTestnet = exports.skaleTitan = exports.skaleRazor = exports.skaleNebulaTestnet = exports.skaleNebula = exports.skaleHumanProtocol = exports.skaleExorde = exports.skaleEuropaTestnet = exports.skaleEuropa = exports.skaleCryptoColosseum = exports.skaleCryptoBlades = exports.skaleCalypsoTestnet = exports.skaleCalypso = exports.skaleBlockBrawlers = exports.sixProtocol = exports.siliconSepolia = exports.silicon = exports.silentData = exports.sidraChain = exports.shimmerTestnet = exports.shimmer = exports.shiden = exports.shibariumTestnet = undefined;
|
|
101597
|
+
exports.vana = exports.unreal = exports.uniqueQuartz = exports.uniqueOpal = exports.unique = exports.unichainSepolia = exports.unichain = exports.ultronTestnet = exports.ultron = exports.ultraTestnet = exports.ultra = exports.ubiq = exports.tronShasta = exports.tronNile = exports.tron = exports.treasureTopaz = exports.treasure = exports.tomb = exports.tiktrixTestnet = exports.thunderTestnet = exports.thunderCore = exports.thetaTestnet = exports.theta = exports.that = exports.thaiChain = exports.ternoa = exports.tenet = exports.telosTestnet = exports.telos = exports.telcoinTestnet = exports.teaSepolia = exports.taraxaTestnet = exports.taraxa = exports.taikoTestnetSepolia = exports.taikoKatla = exports.taikoJolnir = exports.taikoHekla = exports.taiko = exports.tacSPB = exports.tac = exports.syscoinTestnet = exports.syscoin = exports.swissdlt = exports.swellchainTestnet = exports.swellchain = exports.swanSaturnTestnet = exports.swanProximaTestnet = exports.swan = exports.surgeTestnet = exports.superseedSepolia = undefined;
|
|
101598
|
+
exports.zkFairTestnet = exports.zkFair = exports.zircuitTestnet = exports.zircuitGarfieldTestnet = exports.zircuit = exports.zilliqaTestnet = exports.zilliqa = exports.zhejiang = exports.zetachainAthensTestnet = exports.zetachain = exports.zeroNetwork = exports.zeniq = exports.zenchainTestnet = exports.yooldoVerseTestnet = exports.yooldoVerse = exports.xrSepolia = exports.xrplevmTestnet = exports.xrplevmDevnet = exports.xrOne = exports.xphereTestnet = exports.xphereMainnet = exports.xoneTestnet = exports.xoneMainnet = exports.xLayerTestnet = exports.x1Testnet = exports.xLayer = exports.xdcTestnet = exports.xdc = exports.xaiTestnet = exports.xai = exports.worldLand = exports.worldchainSepolia = exports.worldchain = exports.wmcTestnet = exports.whitechainTestnet = exports.whitechain = exports.westendAssetHub = exports.wemixTestnet = exports.wemix = exports.weaveVMAlphanet = exports.wanchainTestnet = exports.wanchain = exports.visionTestnet = exports.vision = exports.victionTestnet = exports.viction = exports.velas = exports.vechain = exports.vanar = exports.vanaMoksha = undefined;
|
|
101599
|
+
exports.zoraTestnet = exports.zoraSepolia = exports.zora = exports.zksyncSepoliaTestnet = exports.zkSyncSepoliaTestnet = exports.zksyncLocalNode = exports.zkSyncLocalNode = exports.zksyncLocalHyperchainL1 = exports.zksyncLocalHyperchain = exports.zksyncLocalCustomHyperchain = exports.zksyncInMemoryNode = exports.zkSyncInMemoryNode = exports.zksync = exports.zkSync = exports.zkLinkNovaSepoliaTestnet = exports.zkLinkNova = undefined;
|
|
100930
101600
|
var _0g_js_1 = require_0g();
|
|
100931
101601
|
Object.defineProperty(exports, "zeroG", { enumerable: true, get: function() {
|
|
100932
101602
|
return _0g_js_1.zeroG;
|
|
@@ -101625,6 +102295,10 @@ var require_chains = __commonJS((exports) => {
|
|
|
101625
102295
|
Object.defineProperty(exports, "etherlink", { enumerable: true, get: function() {
|
|
101626
102296
|
return etherlink_js_1.etherlink;
|
|
101627
102297
|
} });
|
|
102298
|
+
var etherlinkShadownetTestnet_js_1 = require_etherlinkShadownetTestnet();
|
|
102299
|
+
Object.defineProperty(exports, "etherlinkShadownetTestnet", { enumerable: true, get: function() {
|
|
102300
|
+
return etherlinkShadownetTestnet_js_1.etherlinkShadownetTestnet;
|
|
102301
|
+
} });
|
|
101628
102302
|
var etherlinkTestnet_js_1 = require_etherlinkTestnet();
|
|
101629
102303
|
Object.defineProperty(exports, "etherlinkTestnet", { enumerable: true, get: function() {
|
|
101630
102304
|
return etherlinkTestnet_js_1.etherlinkTestnet;
|
|
@@ -101913,6 +102587,10 @@ var require_chains = __commonJS((exports) => {
|
|
|
101913
102587
|
Object.defineProperty(exports, "hela", { enumerable: true, get: function() {
|
|
101914
102588
|
return hela_js_1.hela;
|
|
101915
102589
|
} });
|
|
102590
|
+
var heliosTestnet_js_1 = require_heliosTestnet();
|
|
102591
|
+
Object.defineProperty(exports, "heliosTestnet", { enumerable: true, get: function() {
|
|
102592
|
+
return heliosTestnet_js_1.heliosTestnet;
|
|
102593
|
+
} });
|
|
101916
102594
|
var hemi_js_1 = require_hemi();
|
|
101917
102595
|
Object.defineProperty(exports, "hemi", { enumerable: true, get: function() {
|
|
101918
102596
|
return hemi_js_1.hemi;
|
|
@@ -101965,6 +102643,13 @@ var require_chains = __commonJS((exports) => {
|
|
|
101965
102643
|
Object.defineProperty(exports, "hychainTestnet", { enumerable: true, get: function() {
|
|
101966
102644
|
return hychainTestnet_js_1.hychainTestnet;
|
|
101967
102645
|
} });
|
|
102646
|
+
var hyperEvm_js_1 = require_hyperEvm();
|
|
102647
|
+
Object.defineProperty(exports, "hyperEvm", { enumerable: true, get: function() {
|
|
102648
|
+
return hyperEvm_js_1.hyperEvm;
|
|
102649
|
+
} });
|
|
102650
|
+
Object.defineProperty(exports, "hyperliquid", { enumerable: true, get: function() {
|
|
102651
|
+
return hyperEvm_js_1.hyperEvm;
|
|
102652
|
+
} });
|
|
101968
102653
|
var hyperliquidEvmTestnet_js_1 = require_hyperliquidEvmTestnet();
|
|
101969
102654
|
Object.defineProperty(exports, "hyperliquidEvmTestnet", { enumerable: true, get: function() {
|
|
101970
102655
|
return hyperliquidEvmTestnet_js_1.hyperliquidEvmTestnet;
|
|
@@ -102033,6 +102718,14 @@ var require_chains = __commonJS((exports) => {
|
|
|
102033
102718
|
Object.defineProperty(exports, "iSunCoin", { enumerable: true, get: function() {
|
|
102034
102719
|
return iSunCoin_js_1.iSunCoin;
|
|
102035
102720
|
} });
|
|
102721
|
+
var jasmyChain_js_1 = require_jasmyChain();
|
|
102722
|
+
Object.defineProperty(exports, "jasmyChain", { enumerable: true, get: function() {
|
|
102723
|
+
return jasmyChain_js_1.jasmyChain;
|
|
102724
|
+
} });
|
|
102725
|
+
var jasmyChainTestnet_js_1 = require_jasmyChainTestnet();
|
|
102726
|
+
Object.defineProperty(exports, "jasmyChainTestnet", { enumerable: true, get: function() {
|
|
102727
|
+
return jasmyChainTestnet_js_1.jasmyChainTestnet;
|
|
102728
|
+
} });
|
|
102036
102729
|
var jbc_js_1 = require_jbc();
|
|
102037
102730
|
Object.defineProperty(exports, "jbc", { enumerable: true, get: function() {
|
|
102038
102731
|
return jbc_js_1.jbc;
|
|
@@ -102425,6 +103118,10 @@ var require_chains = __commonJS((exports) => {
|
|
|
102425
103118
|
Object.defineProperty(exports, "modeTestnet", { enumerable: true, get: function() {
|
|
102426
103119
|
return modeTestnet_js_1.modeTestnet;
|
|
102427
103120
|
} });
|
|
103121
|
+
var monad_js_1 = require_monad();
|
|
103122
|
+
Object.defineProperty(exports, "monad", { enumerable: true, get: function() {
|
|
103123
|
+
return monad_js_1.monad;
|
|
103124
|
+
} });
|
|
102428
103125
|
var monadTestnet_js_1 = require_monadTestnet();
|
|
102429
103126
|
Object.defineProperty(exports, "monadTestnet", { enumerable: true, get: function() {
|
|
102430
103127
|
return monadTestnet_js_1.monadTestnet;
|
|
@@ -102697,6 +103394,14 @@ var require_chains = __commonJS((exports) => {
|
|
|
102697
103394
|
Object.defineProperty(exports, "polynomialSepolia", { enumerable: true, get: function() {
|
|
102698
103395
|
return polynomialSepolia_js_1.polynomialSepolia;
|
|
102699
103396
|
} });
|
|
103397
|
+
var potos_js_1 = require_potos();
|
|
103398
|
+
Object.defineProperty(exports, "potos", { enumerable: true, get: function() {
|
|
103399
|
+
return potos_js_1.potos;
|
|
103400
|
+
} });
|
|
103401
|
+
var potosTestnet_js_1 = require_potosTestnet();
|
|
103402
|
+
Object.defineProperty(exports, "potosTestnet", { enumerable: true, get: function() {
|
|
103403
|
+
return potosTestnet_js_1.potosTestnet;
|
|
103404
|
+
} });
|
|
102700
103405
|
var premiumBlock_js_1 = require_premiumBlock();
|
|
102701
103406
|
Object.defineProperty(exports, "premiumBlockTestnet", { enumerable: true, get: function() {
|
|
102702
103407
|
return premiumBlock_js_1.premiumBlockTestnet;
|
|
@@ -102913,6 +103618,10 @@ var require_chains = __commonJS((exports) => {
|
|
|
102913
103618
|
Object.defineProperty(exports, "sidraChain", { enumerable: true, get: function() {
|
|
102914
103619
|
return sidra_js_1.sidraChain;
|
|
102915
103620
|
} });
|
|
103621
|
+
var silentdata_js_1 = require_silentdata();
|
|
103622
|
+
Object.defineProperty(exports, "silentData", { enumerable: true, get: function() {
|
|
103623
|
+
return silentdata_js_1.silentData;
|
|
103624
|
+
} });
|
|
102916
103625
|
var silicon_js_1 = require_silicon();
|
|
102917
103626
|
Object.defineProperty(exports, "silicon", { enumerable: true, get: function() {
|
|
102918
103627
|
return silicon_js_1.silicon;
|
|
@@ -103395,6 +104104,14 @@ var require_chains = __commonJS((exports) => {
|
|
|
103395
104104
|
Object.defineProperty(exports, "xLayerTestnet", { enumerable: true, get: function() {
|
|
103396
104105
|
return xLayerTestnet_js_1.xLayerTestnet;
|
|
103397
104106
|
} });
|
|
104107
|
+
var xoneMainnet_js_1 = require_xoneMainnet();
|
|
104108
|
+
Object.defineProperty(exports, "xoneMainnet", { enumerable: true, get: function() {
|
|
104109
|
+
return xoneMainnet_js_1.xoneMainnet;
|
|
104110
|
+
} });
|
|
104111
|
+
var xoneTestnet_js_1 = require_xoneTestnet();
|
|
104112
|
+
Object.defineProperty(exports, "xoneTestnet", { enumerable: true, get: function() {
|
|
104113
|
+
return xoneTestnet_js_1.xoneTestnet;
|
|
104114
|
+
} });
|
|
103398
104115
|
var xphereMainnet_js_1 = require_xphereMainnet();
|
|
103399
104116
|
Object.defineProperty(exports, "xphereMainnet", { enumerable: true, get: function() {
|
|
103400
104117
|
return xphereMainnet_js_1.xphereMainnet;
|
|
@@ -113108,15 +113825,11 @@ var require_parser = __commonJS((exports) => {
|
|
|
113108
113825
|
targetSchema = choiceResult.targetSchema;
|
|
113109
113826
|
}
|
|
113110
113827
|
const sequenceResult = this.handleSequenceTypes(asn1Schema, schema, target, targetSchema);
|
|
113111
|
-
if (sequenceResult && "isManualMapping" in sequenceResult) {
|
|
113112
|
-
return sequenceResult.result;
|
|
113113
|
-
}
|
|
113114
|
-
const asn1ComparedSchema = sequenceResult;
|
|
113115
113828
|
const res = new target;
|
|
113116
113829
|
if ((0, helper_1.isTypeOfArray)(target)) {
|
|
113117
113830
|
return this.handleArrayTypes(asn1Schema, schema, target);
|
|
113118
113831
|
}
|
|
113119
|
-
this.processSchemaItems(schema,
|
|
113832
|
+
this.processSchemaItems(schema, sequenceResult, res);
|
|
113120
113833
|
return res;
|
|
113121
113834
|
} catch (error) {
|
|
113122
113835
|
if (error instanceof errors_1.AsnSchemaValidationError) {
|
|
@@ -113162,13 +113875,6 @@ var require_parser = __commonJS((exports) => {
|
|
|
113162
113875
|
}
|
|
113163
113876
|
static handleSequenceTypes(asn1Schema, schema, target, targetSchema) {
|
|
113164
113877
|
if (schema.type === enums_1.AsnTypeTypes.Sequence) {
|
|
113165
|
-
const optionalChoiceFields = Object.keys(schema.items).filter((key) => {
|
|
113166
|
-
const item = schema.items[key];
|
|
113167
|
-
return item.optional && typeof item.type === "function" && storage_1.schemaStorage.has(item.type) && storage_1.schemaStorage.get(item.type).type === enums_1.AsnTypeTypes.Choice;
|
|
113168
|
-
});
|
|
113169
|
-
if (optionalChoiceFields.length > 0 && "value" in asn1Schema.valueBlock && Array.isArray(asn1Schema.valueBlock.value) && target.name === "CertReqMsg") {
|
|
113170
|
-
return this.handleManualMapping(asn1Schema, schema, target);
|
|
113171
|
-
}
|
|
113172
113878
|
const asn1ComparedSchema = asn1js.compareSchema({}, asn1Schema, targetSchema);
|
|
113173
113879
|
if (!asn1ComparedSchema.verified) {
|
|
113174
113880
|
throw new errors_1.AsnSchemaValidationError(`Data does not match to ${target.name} ASN1 schema.${asn1ComparedSchema.result.error ? ` ${asn1ComparedSchema.result.error}` : ""}`);
|
|
@@ -113182,35 +113888,6 @@ var require_parser = __commonJS((exports) => {
|
|
|
113182
113888
|
return asn1ComparedSchema;
|
|
113183
113889
|
}
|
|
113184
113890
|
}
|
|
113185
|
-
static handleManualMapping(asn1Schema, schema, target) {
|
|
113186
|
-
const res = new target;
|
|
113187
|
-
const asn1Elements = asn1Schema.valueBlock.value;
|
|
113188
|
-
const schemaKeys = Object.keys(schema.items);
|
|
113189
|
-
let asn1Index = 0;
|
|
113190
|
-
for (let i2 = 0;i2 < schemaKeys.length; i2++) {
|
|
113191
|
-
const key = schemaKeys[i2];
|
|
113192
|
-
const schemaItem = schema.items[key];
|
|
113193
|
-
if (asn1Index >= asn1Elements.length)
|
|
113194
|
-
break;
|
|
113195
|
-
if (schemaItem.repeated) {
|
|
113196
|
-
res[key] = this.processRepeatedField(asn1Elements, asn1Index, schemaItem);
|
|
113197
|
-
break;
|
|
113198
|
-
} else if (typeof schemaItem.type === "number") {
|
|
113199
|
-
res[key] = this.processPrimitiveField(asn1Elements[asn1Index], schemaItem);
|
|
113200
|
-
asn1Index++;
|
|
113201
|
-
} else if (this.isOptionalChoiceField(schemaItem)) {
|
|
113202
|
-
const result = this.processOptionalChoiceField(asn1Elements[asn1Index], schemaItem);
|
|
113203
|
-
if (result.processed) {
|
|
113204
|
-
res[key] = result.value;
|
|
113205
|
-
asn1Index++;
|
|
113206
|
-
}
|
|
113207
|
-
} else {
|
|
113208
|
-
res[key] = this.fromASN(asn1Elements[asn1Index], schemaItem.type);
|
|
113209
|
-
asn1Index++;
|
|
113210
|
-
}
|
|
113211
|
-
}
|
|
113212
|
-
return { result: res, verified: true, isManualMapping: true };
|
|
113213
|
-
}
|
|
113214
113891
|
static processRepeatedField(asn1Elements, asn1Index, schemaItem) {
|
|
113215
113892
|
let elementsToProcess = asn1Elements.slice(asn1Index);
|
|
113216
113893
|
if (elementsToProcess.length === 1 && elementsToProcess[0].constructor.name === "Sequence") {
|
|
@@ -115224,9 +115901,9 @@ var require_mnemonicToAccount = __commonJS((exports) => {
|
|
|
115224
115901
|
var bip32_1 = require_lib2();
|
|
115225
115902
|
var bip39_1 = require_bip39();
|
|
115226
115903
|
var hdKeyToAccount_js_1 = require_hdKeyToAccount();
|
|
115227
|
-
function mnemonicToAccount(mnemonic,
|
|
115228
|
-
const seed = (0, bip39_1.mnemonicToSeedSync)(mnemonic);
|
|
115229
|
-
return (0, hdKeyToAccount_js_1.hdKeyToAccount)(bip32_1.HDKey.fromMasterSeed(seed),
|
|
115904
|
+
function mnemonicToAccount(mnemonic, { passphrase, ...hdKeyOpts } = {}) {
|
|
115905
|
+
const seed = (0, bip39_1.mnemonicToSeedSync)(mnemonic, passphrase);
|
|
115906
|
+
return (0, hdKeyToAccount_js_1.hdKeyToAccount)(bip32_1.HDKey.fromMasterSeed(seed), hdKeyOpts);
|
|
115230
115907
|
}
|
|
115231
115908
|
});
|
|
115232
115909
|
|
|
@@ -137104,7 +137781,7 @@ var require_generateOnChainIdentifier = __commonJS((exports) => {
|
|
|
137104
137781
|
var require_getProtocolKitVersion = __commonJS((exports) => {
|
|
137105
137782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
137106
137783
|
exports.getProtocolKitVersion = undefined;
|
|
137107
|
-
var getProtocolKitVersion = () => "5.2.
|
|
137784
|
+
var getProtocolKitVersion = () => "5.2.22";
|
|
137108
137785
|
exports.getProtocolKitVersion = getProtocolKitVersion;
|
|
137109
137786
|
});
|
|
137110
137787
|
|
|
@@ -138446,7 +139123,7 @@ function getContractError(err, { abi, address, args, docsPath: docsPath3, functi
|
|
|
138446
139123
|
const cause = (() => {
|
|
138447
139124
|
if (err instanceof AbiDecodingZeroDataError)
|
|
138448
139125
|
return new ContractFunctionZeroDataError({ functionName });
|
|
138449
|
-
if ([EXECUTION_REVERTED_ERROR_CODE, InternalRpcError.code].includes(code) && (data || details || message || shortMessage)) {
|
|
139126
|
+
if ([EXECUTION_REVERTED_ERROR_CODE, InternalRpcError.code].includes(code) && (data || details || message || shortMessage) || code === InvalidInputRpcError.code && details === "execution reverted" && data) {
|
|
138450
139127
|
return new ContractFunctionRevertedError({
|
|
138451
139128
|
abi,
|
|
138452
139129
|
data: typeof data === "object" ? data.data : data,
|
|
@@ -139136,6 +139813,7 @@ function toBlobSidecars(parameters) {
|
|
|
139136
139813
|
}
|
|
139137
139814
|
|
|
139138
139815
|
// ../../node_modules/viem/_esm/actions/wallet/prepareTransactionRequest.js
|
|
139816
|
+
init_lru();
|
|
139139
139817
|
init_assertRequest();
|
|
139140
139818
|
|
|
139141
139819
|
// ../../node_modules/viem/_esm/utils/transaction/getTransactionType.js
|
|
@@ -139157,6 +139835,25 @@ function getTransactionType(transaction) {
|
|
|
139157
139835
|
}
|
|
139158
139836
|
throw new InvalidSerializableTransactionError({ transaction });
|
|
139159
139837
|
}
|
|
139838
|
+
// ../../node_modules/viem/_esm/utils/errors/getTransactionError.js
|
|
139839
|
+
init_node();
|
|
139840
|
+
init_transaction();
|
|
139841
|
+
init_getNodeError();
|
|
139842
|
+
function getTransactionError(err, { docsPath: docsPath3, ...args }) {
|
|
139843
|
+
const cause = (() => {
|
|
139844
|
+
const cause2 = getNodeError(err, args);
|
|
139845
|
+
if (cause2 instanceof UnknownNodeError)
|
|
139846
|
+
return err;
|
|
139847
|
+
return cause2;
|
|
139848
|
+
})();
|
|
139849
|
+
return new TransactionExecutionError(cause, {
|
|
139850
|
+
docsPath: docsPath3,
|
|
139851
|
+
...args
|
|
139852
|
+
});
|
|
139853
|
+
}
|
|
139854
|
+
// ../../node_modules/viem/_esm/actions/public/fillTransaction.js
|
|
139855
|
+
init_transactionRequest();
|
|
139856
|
+
init_assertRequest();
|
|
139160
139857
|
|
|
139161
139858
|
// ../../node_modules/viem/_esm/actions/public/getChainId.js
|
|
139162
139859
|
init_fromHex();
|
|
@@ -139167,6 +139864,107 @@ async function getChainId(client) {
|
|
|
139167
139864
|
return hexToNumber(chainIdHex);
|
|
139168
139865
|
}
|
|
139169
139866
|
|
|
139867
|
+
// ../../node_modules/viem/_esm/actions/public/fillTransaction.js
|
|
139868
|
+
async function fillTransaction(client, parameters) {
|
|
139869
|
+
const { account = client.account, accessList, authorizationList, chain = client.chain, blobVersionedHashes, blobs, data, gas, gasPrice, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, nonce: nonce_, nonceManager, to, type, value, ...rest } = parameters;
|
|
139870
|
+
const nonce = await (async () => {
|
|
139871
|
+
if (!account)
|
|
139872
|
+
return nonce_;
|
|
139873
|
+
if (!nonceManager)
|
|
139874
|
+
return nonce_;
|
|
139875
|
+
if (typeof nonce_ !== "undefined")
|
|
139876
|
+
return nonce_;
|
|
139877
|
+
const account_ = parseAccount(account);
|
|
139878
|
+
const chainId = chain ? chain.id : await getAction(client, getChainId, "getChainId")({});
|
|
139879
|
+
return await nonceManager.consume({
|
|
139880
|
+
address: account_.address,
|
|
139881
|
+
chainId,
|
|
139882
|
+
client
|
|
139883
|
+
});
|
|
139884
|
+
})();
|
|
139885
|
+
assertRequest(parameters);
|
|
139886
|
+
const chainFormat = chain?.formatters?.transactionRequest?.format;
|
|
139887
|
+
const format = chainFormat || formatTransactionRequest;
|
|
139888
|
+
const request = format({
|
|
139889
|
+
...extract(rest, { format: chainFormat }),
|
|
139890
|
+
account: account ? parseAccount(account) : undefined,
|
|
139891
|
+
accessList,
|
|
139892
|
+
authorizationList,
|
|
139893
|
+
blobs,
|
|
139894
|
+
blobVersionedHashes,
|
|
139895
|
+
data,
|
|
139896
|
+
gas,
|
|
139897
|
+
gasPrice,
|
|
139898
|
+
maxFeePerBlobGas,
|
|
139899
|
+
maxFeePerGas,
|
|
139900
|
+
maxPriorityFeePerGas,
|
|
139901
|
+
nonce,
|
|
139902
|
+
to,
|
|
139903
|
+
type,
|
|
139904
|
+
value
|
|
139905
|
+
}, "fillTransaction");
|
|
139906
|
+
try {
|
|
139907
|
+
const response = await client.request({
|
|
139908
|
+
method: "eth_fillTransaction",
|
|
139909
|
+
params: [request]
|
|
139910
|
+
});
|
|
139911
|
+
const format2 = chain?.formatters?.transaction?.format || formatTransaction;
|
|
139912
|
+
const transaction = format2(response.tx);
|
|
139913
|
+
delete transaction.blockHash;
|
|
139914
|
+
delete transaction.blockNumber;
|
|
139915
|
+
delete transaction.r;
|
|
139916
|
+
delete transaction.s;
|
|
139917
|
+
delete transaction.transactionIndex;
|
|
139918
|
+
delete transaction.v;
|
|
139919
|
+
delete transaction.yParity;
|
|
139920
|
+
transaction.data = transaction.input;
|
|
139921
|
+
if (transaction.gas)
|
|
139922
|
+
transaction.gas = parameters.gas ?? transaction.gas;
|
|
139923
|
+
if (transaction.gasPrice)
|
|
139924
|
+
transaction.gasPrice = parameters.gasPrice ?? transaction.gasPrice;
|
|
139925
|
+
if (transaction.maxFeePerBlobGas)
|
|
139926
|
+
transaction.maxFeePerBlobGas = parameters.maxFeePerBlobGas ?? transaction.maxFeePerBlobGas;
|
|
139927
|
+
if (transaction.maxFeePerGas)
|
|
139928
|
+
transaction.maxFeePerGas = parameters.maxFeePerGas ?? transaction.maxFeePerGas;
|
|
139929
|
+
if (transaction.maxPriorityFeePerGas)
|
|
139930
|
+
transaction.maxPriorityFeePerGas = parameters.maxPriorityFeePerGas ?? transaction.maxPriorityFeePerGas;
|
|
139931
|
+
if (transaction.nonce)
|
|
139932
|
+
transaction.nonce = parameters.nonce ?? transaction.nonce;
|
|
139933
|
+
const feeMultiplier = await (async () => {
|
|
139934
|
+
if (typeof chain?.fees?.baseFeeMultiplier === "function") {
|
|
139935
|
+
const block = await getAction(client, getBlock, "getBlock")({});
|
|
139936
|
+
return chain.fees.baseFeeMultiplier({
|
|
139937
|
+
block,
|
|
139938
|
+
client,
|
|
139939
|
+
request: parameters
|
|
139940
|
+
});
|
|
139941
|
+
}
|
|
139942
|
+
return chain?.fees?.baseFeeMultiplier ?? 1.2;
|
|
139943
|
+
})();
|
|
139944
|
+
if (feeMultiplier < 1)
|
|
139945
|
+
throw new BaseFeeScalarError;
|
|
139946
|
+
const decimals = feeMultiplier.toString().split(".")[1]?.length ?? 0;
|
|
139947
|
+
const denominator = 10 ** decimals;
|
|
139948
|
+
const multiplyFee = (base) => base * BigInt(Math.ceil(feeMultiplier * denominator)) / BigInt(denominator);
|
|
139949
|
+
if (transaction.maxFeePerGas && !parameters.maxFeePerGas)
|
|
139950
|
+
transaction.maxFeePerGas = multiplyFee(transaction.maxFeePerGas);
|
|
139951
|
+
if (transaction.gasPrice && !parameters.gasPrice)
|
|
139952
|
+
transaction.gasPrice = multiplyFee(transaction.gasPrice);
|
|
139953
|
+
return {
|
|
139954
|
+
raw: response.raw,
|
|
139955
|
+
transaction: {
|
|
139956
|
+
from: request.from,
|
|
139957
|
+
...transaction
|
|
139958
|
+
}
|
|
139959
|
+
};
|
|
139960
|
+
} catch (err) {
|
|
139961
|
+
throw getTransactionError(err, {
|
|
139962
|
+
...parameters,
|
|
139963
|
+
chain: client.chain
|
|
139964
|
+
});
|
|
139965
|
+
}
|
|
139966
|
+
}
|
|
139967
|
+
|
|
139170
139968
|
// ../../node_modules/viem/_esm/actions/wallet/prepareTransactionRequest.js
|
|
139171
139969
|
var defaultParameters = [
|
|
139172
139970
|
"blobVersionedHashes",
|
|
@@ -139177,17 +139975,9 @@ var defaultParameters = [
|
|
|
139177
139975
|
"type"
|
|
139178
139976
|
];
|
|
139179
139977
|
var eip1559NetworkCache = /* @__PURE__ */ new Map;
|
|
139978
|
+
var supportsFillTransaction = /* @__PURE__ */ new LruMap(128);
|
|
139180
139979
|
async function prepareTransactionRequest(client, args) {
|
|
139181
|
-
const { account: account_ = client.account,
|
|
139182
|
-
const account = account_ ? parseAccount(account_) : account_;
|
|
139183
|
-
const request = { ...args, ...account ? { from: account?.address } : {} };
|
|
139184
|
-
let block;
|
|
139185
|
-
async function getBlock2() {
|
|
139186
|
-
if (block)
|
|
139187
|
-
return block;
|
|
139188
|
-
block = await getAction(client, getBlock, "getBlock")({ blockTag: "latest" });
|
|
139189
|
-
return block;
|
|
139190
|
-
}
|
|
139980
|
+
const { account: account_ = client.account, chain, nonceManager, parameters = defaultParameters } = args;
|
|
139191
139981
|
let chainId;
|
|
139192
139982
|
async function getChainId2() {
|
|
139193
139983
|
if (chainId)
|
|
@@ -139200,21 +139990,61 @@ async function prepareTransactionRequest(client, args) {
|
|
|
139200
139990
|
chainId = chainId_;
|
|
139201
139991
|
return chainId;
|
|
139202
139992
|
}
|
|
139203
|
-
|
|
139204
|
-
|
|
139205
|
-
|
|
139206
|
-
|
|
139207
|
-
|
|
139208
|
-
|
|
139209
|
-
|
|
139210
|
-
|
|
139211
|
-
}
|
|
139212
|
-
request.nonce = await getAction(client, getTransactionCount, "getTransactionCount")({
|
|
139213
|
-
address: account.address,
|
|
139214
|
-
blockTag: "pending"
|
|
139215
|
-
});
|
|
139216
|
-
}
|
|
139993
|
+
const account = account_ ? parseAccount(account_) : account_;
|
|
139994
|
+
let nonce = args.nonce;
|
|
139995
|
+
if (parameters.includes("nonce") && typeof nonce === "undefined" && account && nonceManager) {
|
|
139996
|
+
const chainId2 = await getChainId2();
|
|
139997
|
+
nonce = await nonceManager.consume({
|
|
139998
|
+
address: account.address,
|
|
139999
|
+
chainId: chainId2,
|
|
140000
|
+
client
|
|
140001
|
+
});
|
|
139217
140002
|
}
|
|
140003
|
+
const attemptFill = supportsFillTransaction.get(client.uid) !== false && ["fees", "gas"].some((parameter) => args.parameters?.includes(parameter));
|
|
140004
|
+
const fillResult = attemptFill ? await getAction(client, fillTransaction, "fillTransaction")({ ...args, nonce }).then((result) => {
|
|
140005
|
+
const { chainId: chainId2, from, gas: gas2, gasPrice, nonce: nonce2, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, type: type2 } = result.transaction;
|
|
140006
|
+
supportsFillTransaction.set(client.uid, true);
|
|
140007
|
+
return {
|
|
140008
|
+
...args,
|
|
140009
|
+
...chainId2 ? { chainId: chainId2 } : {},
|
|
140010
|
+
...from ? { from } : {},
|
|
140011
|
+
...gas2 ? { gas: gas2 } : {},
|
|
140012
|
+
...gasPrice ? { gasPrice } : {},
|
|
140013
|
+
...nonce2 ? { nonce: nonce2 } : {},
|
|
140014
|
+
...maxFeePerBlobGas ? { maxFeePerBlobGas } : {},
|
|
140015
|
+
...maxFeePerGas ? { maxFeePerGas } : {},
|
|
140016
|
+
...maxPriorityFeePerGas ? { maxPriorityFeePerGas } : {},
|
|
140017
|
+
...type2 ? { type: type2 } : {}
|
|
140018
|
+
};
|
|
140019
|
+
}).catch((e) => {
|
|
140020
|
+
const error = e;
|
|
140021
|
+
const unsupported = error.walk((e2) => {
|
|
140022
|
+
const error2 = e2;
|
|
140023
|
+
return error2.name === "MethodNotFoundRpcError" || error2.name === "MethodNotSupportedRpcError";
|
|
140024
|
+
});
|
|
140025
|
+
if (unsupported)
|
|
140026
|
+
supportsFillTransaction.set(client.uid, false);
|
|
140027
|
+
return args;
|
|
140028
|
+
}) : args;
|
|
140029
|
+
const { blobs, gas, kzg, type } = fillResult;
|
|
140030
|
+
nonce ??= fillResult.nonce;
|
|
140031
|
+
const request = {
|
|
140032
|
+
...fillResult,
|
|
140033
|
+
...account ? { from: account?.address } : {},
|
|
140034
|
+
...nonce ? { nonce } : {}
|
|
140035
|
+
};
|
|
140036
|
+
let block;
|
|
140037
|
+
async function getBlock2() {
|
|
140038
|
+
if (block)
|
|
140039
|
+
return block;
|
|
140040
|
+
block = await getAction(client, getBlock, "getBlock")({ blockTag: "latest" });
|
|
140041
|
+
return block;
|
|
140042
|
+
}
|
|
140043
|
+
if (parameters.includes("nonce") && typeof nonce === "undefined" && account && !nonceManager)
|
|
140044
|
+
request.nonce = await getAction(client, getTransactionCount, "getTransactionCount")({
|
|
140045
|
+
address: account.address,
|
|
140046
|
+
blockTag: "pending"
|
|
140047
|
+
});
|
|
139218
140048
|
if ((parameters.includes("blobVersionedHashes") || parameters.includes("sidecars")) && blobs && kzg) {
|
|
139219
140049
|
const commitments = blobsToCommitments({ blobs, kzg });
|
|
139220
140050
|
if (parameters.includes("blobVersionedHashes")) {
|
|
@@ -139259,7 +140089,7 @@ async function prepareTransactionRequest(client, args) {
|
|
|
139259
140089
|
chain,
|
|
139260
140090
|
request
|
|
139261
140091
|
});
|
|
139262
|
-
if (typeof
|
|
140092
|
+
if (typeof request.maxPriorityFeePerGas === "undefined" && request.maxFeePerGas && request.maxFeePerGas < maxPriorityFeePerGas)
|
|
139263
140093
|
throw new MaxFeePerGasTooLowError({
|
|
139264
140094
|
maxPriorityFeePerGas
|
|
139265
140095
|
});
|
|
@@ -139267,9 +140097,9 @@ async function prepareTransactionRequest(client, args) {
|
|
|
139267
140097
|
request.maxFeePerGas = maxFeePerGas;
|
|
139268
140098
|
}
|
|
139269
140099
|
} else {
|
|
139270
|
-
if (typeof
|
|
140100
|
+
if (typeof request.maxFeePerGas !== "undefined" || typeof request.maxPriorityFeePerGas !== "undefined")
|
|
139271
140101
|
throw new Eip1559FeesNotSupportedError;
|
|
139272
|
-
if (typeof
|
|
140102
|
+
if (typeof request.gasPrice === "undefined") {
|
|
139273
140103
|
const block2 = await getBlock2();
|
|
139274
140104
|
const { gasPrice: gasPrice_ } = await internal_estimateFeesPerGas(client, {
|
|
139275
140105
|
block: block2,
|
|
@@ -140132,6 +140962,7 @@ function createClient(parameters) {
|
|
|
140132
140962
|
const cacheTime = parameters.cacheTime ?? pollingInterval;
|
|
140133
140963
|
const account = parameters.account ? parseAccount(parameters.account) : undefined;
|
|
140134
140964
|
const { config, request, value } = parameters.transport({
|
|
140965
|
+
account,
|
|
140135
140966
|
chain,
|
|
140136
140967
|
pollingInterval
|
|
140137
140968
|
});
|
|
@@ -141515,11 +142346,8 @@ function encodeField({ types, name, type, value }) {
|
|
|
141515
142346
|
keccak256(encodeData({ data: value, primaryType: type, types }))
|
|
141516
142347
|
];
|
|
141517
142348
|
}
|
|
141518
|
-
if (type === "bytes")
|
|
141519
|
-
const prepend = value.length % 2 ? "0" : "";
|
|
141520
|
-
value = `0x${prepend + value.slice(2)}`;
|
|
142349
|
+
if (type === "bytes")
|
|
141521
142350
|
return [{ type: "bytes32" }, keccak256(value)];
|
|
141522
|
-
}
|
|
141523
142351
|
if (type === "string")
|
|
141524
142352
|
return [{ type: "bytes32" }, keccak256(toHex(value))];
|
|
141525
142353
|
if (type.lastIndexOf("]") === type.length - 1) {
|
|
@@ -141552,7 +142380,7 @@ __export(exports_SignatureErc8010, {
|
|
|
141552
142380
|
});
|
|
141553
142381
|
|
|
141554
142382
|
// ../../node_modules/abitype/dist/esm/version.js
|
|
141555
|
-
var version4 = "1.
|
|
142383
|
+
var version4 = "1.2.0";
|
|
141556
142384
|
|
|
141557
142385
|
// ../../node_modules/abitype/dist/esm/errors.js
|
|
141558
142386
|
class BaseError4 extends Error {
|
|
@@ -141966,7 +142794,7 @@ function getParameterCacheKey2(param, type, structs) {
|
|
|
141966
142794
|
}
|
|
141967
142795
|
if (type)
|
|
141968
142796
|
return `${type}:${param}${structKey}`;
|
|
141969
|
-
return param
|
|
142797
|
+
return `${param}${structKey}`;
|
|
141970
142798
|
}
|
|
141971
142799
|
var parameterCache2 = new Map([
|
|
141972
142800
|
["address", { type: "address" }],
|
|
@@ -144013,7 +144841,7 @@ async function getStorageAt(client, { address, blockNumber, blockTag = "latest",
|
|
|
144013
144841
|
// ../../node_modules/viem/_esm/actions/public/getTransaction.js
|
|
144014
144842
|
init_transaction();
|
|
144015
144843
|
init_toHex();
|
|
144016
|
-
async function getTransaction(client, { blockHash, blockNumber, blockTag: blockTag_, hash: hash3, index: index2 }) {
|
|
144844
|
+
async function getTransaction(client, { blockHash, blockNumber, blockTag: blockTag_, hash: hash3, index: index2, sender, nonce }) {
|
|
144017
144845
|
const blockTag = blockTag_ || "latest";
|
|
144018
144846
|
const blockNumberHex = blockNumber !== undefined ? numberToHex(blockNumber) : undefined;
|
|
144019
144847
|
let transaction = null;
|
|
@@ -144027,11 +144855,16 @@ async function getTransaction(client, { blockHash, blockNumber, blockTag: blockT
|
|
|
144027
144855
|
method: "eth_getTransactionByBlockHashAndIndex",
|
|
144028
144856
|
params: [blockHash, numberToHex(index2)]
|
|
144029
144857
|
}, { dedupe: true });
|
|
144030
|
-
} else if (blockNumberHex || blockTag) {
|
|
144858
|
+
} else if ((blockNumberHex || blockTag) && typeof index2 === "number") {
|
|
144031
144859
|
transaction = await client.request({
|
|
144032
144860
|
method: "eth_getTransactionByBlockNumberAndIndex",
|
|
144033
144861
|
params: [blockNumberHex || blockTag, numberToHex(index2)]
|
|
144034
144862
|
}, { dedupe: Boolean(blockNumberHex) });
|
|
144863
|
+
} else if (sender && typeof nonce === "number") {
|
|
144864
|
+
transaction = await client.request({
|
|
144865
|
+
method: "eth_getTransactionBySenderAndNonce",
|
|
144866
|
+
params: [sender, numberToHex(nonce)]
|
|
144867
|
+
}, { dedupe: true });
|
|
144035
144868
|
}
|
|
144036
144869
|
if (!transaction)
|
|
144037
144870
|
throw new TransactionNotFoundError({
|
|
@@ -145112,7 +145945,7 @@ class VerificationError extends Error {
|
|
|
145112
145945
|
// ../../node_modules/viem/_esm/actions/public/verifyMessage.js
|
|
145113
145946
|
async function verifyMessage(client, { address, message, factory, factoryData, signature, ...callRequest }) {
|
|
145114
145947
|
const hash3 = hashMessage(message);
|
|
145115
|
-
return
|
|
145948
|
+
return getAction(client, verifyHash, "verifyHash")({
|
|
145116
145949
|
address,
|
|
145117
145950
|
factory,
|
|
145118
145951
|
factoryData,
|
|
@@ -145126,7 +145959,7 @@ async function verifyMessage(client, { address, message, factory, factoryData, s
|
|
|
145126
145959
|
async function verifyTypedData(client, parameters) {
|
|
145127
145960
|
const { address, factory, factoryData, signature, message, primaryType, types, domain, ...callRequest } = parameters;
|
|
145128
145961
|
const hash3 = hashTypedData({ message, primaryType, types, domain });
|
|
145129
|
-
return
|
|
145962
|
+
return getAction(client, verifyHash, "verifyHash")({
|
|
145130
145963
|
address,
|
|
145131
145964
|
factory,
|
|
145132
145965
|
factoryData,
|
|
@@ -145837,6 +146670,7 @@ function publicActions(client) {
|
|
|
145837
146670
|
getLogs: (args) => getLogs(client, args),
|
|
145838
146671
|
getProof: (args) => getProof(client, args),
|
|
145839
146672
|
estimateMaxPriorityFeePerGas: (args) => estimateMaxPriorityFeePerGas(client, args),
|
|
146673
|
+
fillTransaction: (args) => fillTransaction(client, args),
|
|
145840
146674
|
getStorageAt: (args) => getStorageAt(client, args),
|
|
145841
146675
|
getTransaction: (args) => getTransaction(client, args),
|
|
145842
146676
|
getTransactionConfirmations: (args) => getTransactionConfirmations(client, args),
|