@rhinestone/shared-configs 1.4.103 → 1.4.105
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/scripts/generate-abis.js +1 -0
- package/dist/scripts/generate.js +3 -0
- package/dist/src/abis/index.d.ts +1 -1
- package/dist/src/abis/index.d.ts.map +1 -1
- package/dist/src/abis/index.js +2 -1
- package/dist/src/abis/orchestrator.d.ts +290 -0
- package/dist/src/abis/orchestrator.d.ts.map +1 -1
- package/dist/src/abis/orchestrator.js +380 -1
- package/dist/src/generated/contracts.d.ts.map +1 -1
- package/dist/src/generated/contracts.dev.d.ts.map +1 -1
- package/dist/src/generated/contracts.dev.js +1 -0
- package/dist/src/generated/contracts.js +1 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ const ABI_CONFIGS = [
|
|
|
24
24
|
{ name: "intentExecutorAdapterGasRefundAbi", sourceFile: "intentExecutorAdapterGasRefund.json" },
|
|
25
25
|
{ name: "paymasterAbi", sourceFile: "paymaster.json" },
|
|
26
26
|
{ name: "multicallAbi", sourceFile: "multicall.json" },
|
|
27
|
+
{ name: "singlecallAdapterAbi", sourceFile: "singlecallAdapter.json" },
|
|
27
28
|
{ name: "multicallHandlerAbi", sourceFile: "multicallHandler.json" },
|
|
28
29
|
{ name: "acrossAdapterOptimizedAbi", sourceFile: "acrossAdapterOptimized.json", satisfiesAbi: false },
|
|
29
30
|
{ name: "routeTupleAbi", sourceFile: "routeTuple.json", satisfiesAbi: false },
|
package/dist/scripts/generate.js
CHANGED
|
@@ -195,6 +195,7 @@ const mapWildcardDeployments = (deployments) => {
|
|
|
195
195
|
intentExecutorAdapterGasRefund: deployments.intentExecutorAdapterGasRefund,
|
|
196
196
|
multicallAdapter: deployments.multicallAdapter,
|
|
197
197
|
multicallHandler: deployments.multicallHandler,
|
|
198
|
+
singlecallAdapter: deployments.singleCallAdapter,
|
|
198
199
|
ecoHandler: deployments.multicallHandler,
|
|
199
200
|
paymaster: deployments.paymaster,
|
|
200
201
|
relayerPot: deployments.relayerPotV0AndV1 ?? deployments.relayerPot,
|
|
@@ -362,7 +363,9 @@ async function generate() {
|
|
|
362
363
|
const devOverrides = overrides.dev ?? overrides.staging ?? {};
|
|
363
364
|
const stagingContractsMerged = mergeContracts(stagingContracts, devOverrides);
|
|
364
365
|
await (0, promises_1.writeFile)(node_path_1.default.join(generatedDir, "contracts.ts"), `${renderContracts(prodContractsMerged)}\n`);
|
|
366
|
+
await (0, promises_1.writeFile)(node_path_1.default.join(configsDir, "contracts.json"), `${JSON.stringify(prodContractsMerged, null, 2)}\n`);
|
|
365
367
|
await (0, promises_1.writeFile)(node_path_1.default.join(generatedDir, "contracts.dev.ts"), `${renderContracts(stagingContractsMerged)}\n`);
|
|
368
|
+
await (0, promises_1.writeFile)(node_path_1.default.join(configsDir, "contracts.dev.json"), `${JSON.stringify(stagingContractsMerged, null, 2)}\n`);
|
|
366
369
|
await (0, promises_1.writeFile)(node_path_1.default.join(generatedDir, "abis.ts"), `${renderAbiSignatures(abiSignatures)}\n`);
|
|
367
370
|
}
|
|
368
371
|
generate().catch((err) => {
|
package/dist/src/abis/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { routerAbi, routerHelperAbi, emissaryAbi, intentExecutorAbi, intentExecutorAdapterAbi, intentExecutorAdapterGasRefundAbi, acrossAdapterAbi, ecoAdapterAbi, relayAdapterAbi, sameChainAdapterAbi, paymasterAbi, multicallAbi, multicallHandlerAbi, acrossAdapterOptimizedAbi, ecoAdapterOptimizedAbi, relayAdapterOptimizedAbi, routeTupleAbi, rewardTupleAbi, multicallAbi as multiCallAbi } from "./orchestrator";
|
|
1
|
+
export { routerAbi, routerHelperAbi, emissaryAbi, intentExecutorAbi, intentExecutorAdapterAbi, intentExecutorAdapterGasRefundAbi, acrossAdapterAbi, ecoAdapterAbi, relayAdapterAbi, sameChainAdapterAbi, paymasterAbi, multicallAbi, multicallHandlerAbi, acrossAdapterOptimizedAbi, ecoAdapterOptimizedAbi, relayAdapterOptimizedAbi, routeTupleAbi, rewardTupleAbi, multicallAbi as multiCallAbi, singlecallAdapterAbi, } from "./orchestrator";
|
|
2
2
|
export { directRouteAbi, wethAbi, relayerPotV1Abi, singleCallAbi, } from "./relayer";
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/abis/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,SAAS,EACT,eAAe,EACf,WAAW,EACX,iBAAiB,EACjB,wBAAwB,EACxB,iCAAiC,EACjC,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,mBAAmB,EACnB,YAAY,EACZ,YAAY,EACZ,mBAAmB,EACnB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,aAAa,EACb,cAAc,EACd,YAAY,IAAI,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/abis/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,SAAS,EACT,eAAe,EACf,WAAW,EACX,iBAAiB,EACjB,wBAAwB,EACxB,iCAAiC,EACjC,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,mBAAmB,EACnB,YAAY,EACZ,YAAY,EACZ,mBAAmB,EACnB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,aAAa,EACb,cAAc,EACd,YAAY,IAAI,YAAY,EAC5B,oBAAoB,GACrB,MAAM,gBAAgB,CAAC;AAIxB,OAAO,EACL,cAAc,EACd,OAAO,EACP,eAAe,EACf,aAAa,GACd,MAAM,WAAW,CAAC"}
|
package/dist/src/abis/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.singleCallAbi = exports.relayerPotV1Abi = exports.wethAbi = exports.directRouteAbi = exports.multiCallAbi = exports.rewardTupleAbi = exports.routeTupleAbi = exports.relayAdapterOptimizedAbi = exports.ecoAdapterOptimizedAbi = exports.acrossAdapterOptimizedAbi = exports.multicallHandlerAbi = exports.multicallAbi = exports.paymasterAbi = exports.sameChainAdapterAbi = exports.relayAdapterAbi = exports.ecoAdapterAbi = exports.acrossAdapterAbi = exports.intentExecutorAdapterGasRefundAbi = exports.intentExecutorAdapterAbi = exports.intentExecutorAbi = exports.emissaryAbi = exports.routerHelperAbi = exports.routerAbi = void 0;
|
|
3
|
+
exports.singleCallAbi = exports.relayerPotV1Abi = exports.wethAbi = exports.directRouteAbi = exports.singlecallAdapterAbi = exports.multiCallAbi = exports.rewardTupleAbi = exports.routeTupleAbi = exports.relayAdapterOptimizedAbi = exports.ecoAdapterOptimizedAbi = exports.acrossAdapterOptimizedAbi = exports.multicallHandlerAbi = exports.multicallAbi = exports.paymasterAbi = exports.sameChainAdapterAbi = exports.relayAdapterAbi = exports.ecoAdapterAbi = exports.acrossAdapterAbi = exports.intentExecutorAdapterGasRefundAbi = exports.intentExecutorAdapterAbi = exports.intentExecutorAbi = exports.emissaryAbi = exports.routerHelperAbi = exports.routerAbi = void 0;
|
|
4
4
|
// Re-export ABIs from orchestrator.ts
|
|
5
5
|
var orchestrator_1 = require("./orchestrator");
|
|
6
6
|
Object.defineProperty(exports, "routerAbi", { enumerable: true, get: function () { return orchestrator_1.routerAbi; } });
|
|
@@ -22,6 +22,7 @@ Object.defineProperty(exports, "relayAdapterOptimizedAbi", { enumerable: true, g
|
|
|
22
22
|
Object.defineProperty(exports, "routeTupleAbi", { enumerable: true, get: function () { return orchestrator_1.routeTupleAbi; } });
|
|
23
23
|
Object.defineProperty(exports, "rewardTupleAbi", { enumerable: true, get: function () { return orchestrator_1.rewardTupleAbi; } });
|
|
24
24
|
Object.defineProperty(exports, "multiCallAbi", { enumerable: true, get: function () { return orchestrator_1.multicallAbi; } });
|
|
25
|
+
Object.defineProperty(exports, "singlecallAdapterAbi", { enumerable: true, get: function () { return orchestrator_1.singlecallAdapterAbi; } });
|
|
25
26
|
// Relayer ABIs
|
|
26
27
|
var relayer_1 = require("./relayer");
|
|
27
28
|
Object.defineProperty(exports, "directRouteAbi", { enumerable: true, get: function () { return relayer_1.directRouteAbi; } });
|
|
@@ -6983,6 +6983,296 @@ export declare const multicallAbi: readonly [{
|
|
|
6983
6983
|
readonly name: "WithdrawFailed";
|
|
6984
6984
|
readonly inputs: readonly [];
|
|
6985
6985
|
}];
|
|
6986
|
+
export declare const singlecallAdapterAbi: readonly [{
|
|
6987
|
+
readonly type: "constructor";
|
|
6988
|
+
readonly inputs: readonly [{
|
|
6989
|
+
readonly name: "router";
|
|
6990
|
+
readonly type: "address";
|
|
6991
|
+
readonly internalType: "address";
|
|
6992
|
+
}];
|
|
6993
|
+
readonly stateMutability: "nonpayable";
|
|
6994
|
+
}, {
|
|
6995
|
+
readonly type: "fallback";
|
|
6996
|
+
readonly stateMutability: "payable";
|
|
6997
|
+
}, {
|
|
6998
|
+
readonly type: "receive";
|
|
6999
|
+
readonly stateMutability: "payable";
|
|
7000
|
+
}, {
|
|
7001
|
+
readonly type: "function";
|
|
7002
|
+
readonly name: "ADAPTER_TAG";
|
|
7003
|
+
readonly inputs: readonly [];
|
|
7004
|
+
readonly outputs: readonly [{
|
|
7005
|
+
readonly name: "";
|
|
7006
|
+
readonly type: "bytes12";
|
|
7007
|
+
readonly internalType: "bytes12";
|
|
7008
|
+
}];
|
|
7009
|
+
readonly stateMutability: "pure";
|
|
7010
|
+
}, {
|
|
7011
|
+
readonly type: "function";
|
|
7012
|
+
readonly name: "ARBITER";
|
|
7013
|
+
readonly inputs: readonly [];
|
|
7014
|
+
readonly outputs: readonly [{
|
|
7015
|
+
readonly name: "";
|
|
7016
|
+
readonly type: "address";
|
|
7017
|
+
readonly internalType: "address";
|
|
7018
|
+
}];
|
|
7019
|
+
readonly stateMutability: "view";
|
|
7020
|
+
}, {
|
|
7021
|
+
readonly type: "function";
|
|
7022
|
+
readonly name: "_ROUTER";
|
|
7023
|
+
readonly inputs: readonly [];
|
|
7024
|
+
readonly outputs: readonly [{
|
|
7025
|
+
readonly name: "";
|
|
7026
|
+
readonly type: "address";
|
|
7027
|
+
readonly internalType: "address";
|
|
7028
|
+
}];
|
|
7029
|
+
readonly stateMutability: "view";
|
|
7030
|
+
}, {
|
|
7031
|
+
readonly type: "function";
|
|
7032
|
+
readonly name: "isContractDeployed";
|
|
7033
|
+
readonly inputs: readonly [{
|
|
7034
|
+
readonly name: "addr";
|
|
7035
|
+
readonly type: "address";
|
|
7036
|
+
readonly internalType: "address";
|
|
7037
|
+
}];
|
|
7038
|
+
readonly outputs: readonly [{
|
|
7039
|
+
readonly name: "";
|
|
7040
|
+
readonly type: "bool";
|
|
7041
|
+
readonly internalType: "bool";
|
|
7042
|
+
}];
|
|
7043
|
+
readonly stateMutability: "view";
|
|
7044
|
+
}, {
|
|
7045
|
+
readonly type: "function";
|
|
7046
|
+
readonly name: "multiCall";
|
|
7047
|
+
readonly inputs: readonly [{
|
|
7048
|
+
readonly name: "executions";
|
|
7049
|
+
readonly type: "tuple[]";
|
|
7050
|
+
readonly internalType: "struct Execution[]";
|
|
7051
|
+
readonly components: readonly [{
|
|
7052
|
+
readonly name: "target";
|
|
7053
|
+
readonly type: "address";
|
|
7054
|
+
readonly internalType: "address";
|
|
7055
|
+
}, {
|
|
7056
|
+
readonly name: "value";
|
|
7057
|
+
readonly type: "uint256";
|
|
7058
|
+
readonly internalType: "uint256";
|
|
7059
|
+
}, {
|
|
7060
|
+
readonly name: "callData";
|
|
7061
|
+
readonly type: "bytes";
|
|
7062
|
+
readonly internalType: "bytes";
|
|
7063
|
+
}];
|
|
7064
|
+
}];
|
|
7065
|
+
readonly outputs: readonly [];
|
|
7066
|
+
readonly stateMutability: "payable";
|
|
7067
|
+
}, {
|
|
7068
|
+
readonly type: "function";
|
|
7069
|
+
readonly name: "multiCallWithDrainToken";
|
|
7070
|
+
readonly inputs: readonly [{
|
|
7071
|
+
readonly name: "executions";
|
|
7072
|
+
readonly type: "tuple[]";
|
|
7073
|
+
readonly internalType: "struct Execution[]";
|
|
7074
|
+
readonly components: readonly [{
|
|
7075
|
+
readonly name: "target";
|
|
7076
|
+
readonly type: "address";
|
|
7077
|
+
readonly internalType: "address";
|
|
7078
|
+
}, {
|
|
7079
|
+
readonly name: "value";
|
|
7080
|
+
readonly type: "uint256";
|
|
7081
|
+
readonly internalType: "uint256";
|
|
7082
|
+
}, {
|
|
7083
|
+
readonly name: "callData";
|
|
7084
|
+
readonly type: "bytes";
|
|
7085
|
+
readonly internalType: "bytes";
|
|
7086
|
+
}];
|
|
7087
|
+
}, {
|
|
7088
|
+
readonly name: "tokenAndAmounts";
|
|
7089
|
+
readonly type: "uint256[2][]";
|
|
7090
|
+
readonly internalType: "uint256[2][]";
|
|
7091
|
+
}, {
|
|
7092
|
+
readonly name: "recipient";
|
|
7093
|
+
readonly type: "address";
|
|
7094
|
+
readonly internalType: "address";
|
|
7095
|
+
}];
|
|
7096
|
+
readonly outputs: readonly [];
|
|
7097
|
+
readonly stateMutability: "payable";
|
|
7098
|
+
}, {
|
|
7099
|
+
readonly type: "function";
|
|
7100
|
+
readonly name: "semVer";
|
|
7101
|
+
readonly inputs: readonly [];
|
|
7102
|
+
readonly outputs: readonly [{
|
|
7103
|
+
readonly name: "packedVersion";
|
|
7104
|
+
readonly type: "bytes6";
|
|
7105
|
+
readonly internalType: "bytes6";
|
|
7106
|
+
}];
|
|
7107
|
+
readonly stateMutability: "view";
|
|
7108
|
+
}, {
|
|
7109
|
+
readonly type: "function";
|
|
7110
|
+
readonly name: "semVerUnpacked";
|
|
7111
|
+
readonly inputs: readonly [];
|
|
7112
|
+
readonly outputs: readonly [{
|
|
7113
|
+
readonly name: "major";
|
|
7114
|
+
readonly type: "uint256";
|
|
7115
|
+
readonly internalType: "uint256";
|
|
7116
|
+
}, {
|
|
7117
|
+
readonly name: "minor";
|
|
7118
|
+
readonly type: "uint256";
|
|
7119
|
+
readonly internalType: "uint256";
|
|
7120
|
+
}, {
|
|
7121
|
+
readonly name: "patch";
|
|
7122
|
+
readonly type: "uint256";
|
|
7123
|
+
readonly internalType: "uint256";
|
|
7124
|
+
}];
|
|
7125
|
+
readonly stateMutability: "view";
|
|
7126
|
+
}, {
|
|
7127
|
+
readonly type: "function";
|
|
7128
|
+
readonly name: "settlementLayerSpender";
|
|
7129
|
+
readonly inputs: readonly [];
|
|
7130
|
+
readonly outputs: readonly [{
|
|
7131
|
+
readonly name: "tokenSpender";
|
|
7132
|
+
readonly type: "address";
|
|
7133
|
+
readonly internalType: "address";
|
|
7134
|
+
}];
|
|
7135
|
+
readonly stateMutability: "view";
|
|
7136
|
+
}, {
|
|
7137
|
+
readonly type: "function";
|
|
7138
|
+
readonly name: "singleCall_handleFill";
|
|
7139
|
+
readonly inputs: readonly [{
|
|
7140
|
+
readonly name: "nonce";
|
|
7141
|
+
readonly type: "uint256";
|
|
7142
|
+
readonly internalType: "uint256";
|
|
7143
|
+
}, {
|
|
7144
|
+
readonly name: "sponsor";
|
|
7145
|
+
readonly type: "address";
|
|
7146
|
+
readonly internalType: "address";
|
|
7147
|
+
}, {
|
|
7148
|
+
readonly name: "packedData";
|
|
7149
|
+
readonly type: "bytes";
|
|
7150
|
+
readonly internalType: "bytes";
|
|
7151
|
+
}];
|
|
7152
|
+
readonly outputs: readonly [{
|
|
7153
|
+
readonly name: "";
|
|
7154
|
+
readonly type: "bytes4";
|
|
7155
|
+
readonly internalType: "bytes4";
|
|
7156
|
+
}];
|
|
7157
|
+
readonly stateMutability: "nonpayable";
|
|
7158
|
+
}, {
|
|
7159
|
+
readonly type: "function";
|
|
7160
|
+
readonly name: "supportsInterface";
|
|
7161
|
+
readonly inputs: readonly [{
|
|
7162
|
+
readonly name: "selector";
|
|
7163
|
+
readonly type: "bytes4";
|
|
7164
|
+
readonly internalType: "bytes4";
|
|
7165
|
+
}];
|
|
7166
|
+
readonly outputs: readonly [{
|
|
7167
|
+
readonly name: "";
|
|
7168
|
+
readonly type: "bool";
|
|
7169
|
+
readonly internalType: "bool";
|
|
7170
|
+
}];
|
|
7171
|
+
readonly stateMutability: "pure";
|
|
7172
|
+
}, {
|
|
7173
|
+
readonly type: "function";
|
|
7174
|
+
readonly name: "version";
|
|
7175
|
+
readonly inputs: readonly [];
|
|
7176
|
+
readonly outputs: readonly [{
|
|
7177
|
+
readonly name: "";
|
|
7178
|
+
readonly type: "bytes";
|
|
7179
|
+
readonly internalType: "bytes";
|
|
7180
|
+
}];
|
|
7181
|
+
readonly stateMutability: "view";
|
|
7182
|
+
}, {
|
|
7183
|
+
readonly type: "event";
|
|
7184
|
+
readonly name: "RouterClaimed_Compact";
|
|
7185
|
+
readonly inputs: readonly [{
|
|
7186
|
+
readonly name: "sponsor";
|
|
7187
|
+
readonly type: "address";
|
|
7188
|
+
readonly indexed: false;
|
|
7189
|
+
readonly internalType: "address";
|
|
7190
|
+
}, {
|
|
7191
|
+
readonly name: "nonce";
|
|
7192
|
+
readonly type: "uint256";
|
|
7193
|
+
readonly indexed: false;
|
|
7194
|
+
readonly internalType: "uint256";
|
|
7195
|
+
}];
|
|
7196
|
+
readonly anonymous: false;
|
|
7197
|
+
}, {
|
|
7198
|
+
readonly type: "event";
|
|
7199
|
+
readonly name: "RouterClaimed_Permit2";
|
|
7200
|
+
readonly inputs: readonly [{
|
|
7201
|
+
readonly name: "sponsor";
|
|
7202
|
+
readonly type: "address";
|
|
7203
|
+
readonly indexed: false;
|
|
7204
|
+
readonly internalType: "address";
|
|
7205
|
+
}, {
|
|
7206
|
+
readonly name: "nonce";
|
|
7207
|
+
readonly type: "uint256";
|
|
7208
|
+
readonly indexed: false;
|
|
7209
|
+
readonly internalType: "uint256";
|
|
7210
|
+
}];
|
|
7211
|
+
readonly anonymous: false;
|
|
7212
|
+
}, {
|
|
7213
|
+
readonly type: "event";
|
|
7214
|
+
readonly name: "RouterFilled";
|
|
7215
|
+
readonly inputs: readonly [{
|
|
7216
|
+
readonly name: "recipient";
|
|
7217
|
+
readonly type: "address";
|
|
7218
|
+
readonly indexed: false;
|
|
7219
|
+
readonly internalType: "address";
|
|
7220
|
+
}, {
|
|
7221
|
+
readonly name: "nonce";
|
|
7222
|
+
readonly type: "uint256";
|
|
7223
|
+
readonly indexed: false;
|
|
7224
|
+
readonly internalType: "uint256";
|
|
7225
|
+
}];
|
|
7226
|
+
readonly anonymous: false;
|
|
7227
|
+
}, {
|
|
7228
|
+
readonly type: "error";
|
|
7229
|
+
readonly name: "ExecutionFailed";
|
|
7230
|
+
readonly inputs: readonly [];
|
|
7231
|
+
}, {
|
|
7232
|
+
readonly type: "error";
|
|
7233
|
+
readonly name: "InvalidRelayerContext";
|
|
7234
|
+
readonly inputs: readonly [];
|
|
7235
|
+
}, {
|
|
7236
|
+
readonly type: "error";
|
|
7237
|
+
readonly name: "MajorVersionTooLarge";
|
|
7238
|
+
readonly inputs: readonly [{
|
|
7239
|
+
readonly name: "major";
|
|
7240
|
+
readonly type: "uint256";
|
|
7241
|
+
readonly internalType: "uint256";
|
|
7242
|
+
}];
|
|
7243
|
+
}, {
|
|
7244
|
+
readonly type: "error";
|
|
7245
|
+
readonly name: "MinorVersionTooLarge";
|
|
7246
|
+
readonly inputs: readonly [{
|
|
7247
|
+
readonly name: "minor";
|
|
7248
|
+
readonly type: "uint256";
|
|
7249
|
+
readonly internalType: "uint256";
|
|
7250
|
+
}];
|
|
7251
|
+
}, {
|
|
7252
|
+
readonly type: "error";
|
|
7253
|
+
readonly name: "OnlyDelegateCall";
|
|
7254
|
+
readonly inputs: readonly [];
|
|
7255
|
+
}, {
|
|
7256
|
+
readonly type: "error";
|
|
7257
|
+
readonly name: "PatchVersionTooLarge";
|
|
7258
|
+
readonly inputs: readonly [{
|
|
7259
|
+
readonly name: "patch";
|
|
7260
|
+
readonly type: "uint256";
|
|
7261
|
+
readonly internalType: "uint256";
|
|
7262
|
+
}];
|
|
7263
|
+
}, {
|
|
7264
|
+
readonly type: "error";
|
|
7265
|
+
readonly name: "SingleCallFailed";
|
|
7266
|
+
readonly inputs: readonly [];
|
|
7267
|
+
}, {
|
|
7268
|
+
readonly type: "error";
|
|
7269
|
+
readonly name: "Unauthorized";
|
|
7270
|
+
readonly inputs: readonly [];
|
|
7271
|
+
}, {
|
|
7272
|
+
readonly type: "error";
|
|
7273
|
+
readonly name: "WithdrawFailed";
|
|
7274
|
+
readonly inputs: readonly [];
|
|
7275
|
+
}];
|
|
6986
7276
|
export declare const multicallHandlerAbi: readonly [{
|
|
6987
7277
|
readonly type: "constructor";
|
|
6988
7278
|
readonly inputs: readonly [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../../../src/abis/orchestrator.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAw6BE,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCJ,CAAC;AAEzB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiQA,CAAC;AAEzB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAorCN,CAAC;AAEzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAk0DL,CAAC;AAEzB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAixCF,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgtCJ,CAAC;AAEzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
1
|
+
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../../../src/abis/orchestrator.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAw6BE,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCJ,CAAC;AAEzB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiQA,CAAC;AAEzB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAorCN,CAAC;AAEzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAk0DL,CAAC;AAEzB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAixCF,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgtCJ,CAAC;AAEzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.relayAdapterOptimizedAbi = exports.ecoAdapterOptimizedAbi = exports.rewardTupleAbi = exports.routeTupleAbi = exports.acrossAdapterOptimizedAbi = exports.multicallHandlerAbi = exports.multicallAbi = exports.paymasterAbi = exports.intentExecutorAdapterGasRefundAbi = exports.intentExecutorAdapterAbi = exports.sameChainAdapterAbi = exports.relayAdapterAbi = exports.ecoAdapterAbi = exports.acrossAdapterAbi = exports.intentExecutorAbi = exports.emissaryAbi = exports.routerHelperAbi = exports.routerAbi = void 0;
|
|
3
|
+
exports.relayAdapterOptimizedAbi = exports.ecoAdapterOptimizedAbi = exports.rewardTupleAbi = exports.routeTupleAbi = exports.acrossAdapterOptimizedAbi = exports.multicallHandlerAbi = exports.singlecallAdapterAbi = exports.multicallAbi = exports.paymasterAbi = exports.intentExecutorAdapterGasRefundAbi = exports.intentExecutorAdapterAbi = exports.sameChainAdapterAbi = exports.relayAdapterAbi = exports.ecoAdapterAbi = exports.acrossAdapterAbi = exports.intentExecutorAbi = exports.emissaryAbi = exports.routerHelperAbi = exports.routerAbi = void 0;
|
|
4
4
|
exports.routerAbi = [
|
|
5
5
|
{
|
|
6
6
|
type: 'constructor',
|
|
@@ -9078,6 +9078,385 @@ exports.multicallAbi = [
|
|
|
9078
9078
|
inputs: []
|
|
9079
9079
|
}
|
|
9080
9080
|
];
|
|
9081
|
+
exports.singlecallAdapterAbi = [
|
|
9082
|
+
{
|
|
9083
|
+
type: 'constructor',
|
|
9084
|
+
inputs: [
|
|
9085
|
+
{
|
|
9086
|
+
name: 'router',
|
|
9087
|
+
type: 'address',
|
|
9088
|
+
internalType: 'address'
|
|
9089
|
+
}
|
|
9090
|
+
],
|
|
9091
|
+
stateMutability: 'nonpayable'
|
|
9092
|
+
},
|
|
9093
|
+
{
|
|
9094
|
+
type: 'fallback',
|
|
9095
|
+
stateMutability: 'payable'
|
|
9096
|
+
},
|
|
9097
|
+
{
|
|
9098
|
+
type: 'receive',
|
|
9099
|
+
stateMutability: 'payable'
|
|
9100
|
+
},
|
|
9101
|
+
{
|
|
9102
|
+
type: 'function',
|
|
9103
|
+
name: 'ADAPTER_TAG',
|
|
9104
|
+
inputs: [],
|
|
9105
|
+
outputs: [
|
|
9106
|
+
{
|
|
9107
|
+
name: '',
|
|
9108
|
+
type: 'bytes12',
|
|
9109
|
+
internalType: 'bytes12'
|
|
9110
|
+
}
|
|
9111
|
+
],
|
|
9112
|
+
stateMutability: 'pure'
|
|
9113
|
+
},
|
|
9114
|
+
{
|
|
9115
|
+
type: 'function',
|
|
9116
|
+
name: 'ARBITER',
|
|
9117
|
+
inputs: [],
|
|
9118
|
+
outputs: [
|
|
9119
|
+
{
|
|
9120
|
+
name: '',
|
|
9121
|
+
type: 'address',
|
|
9122
|
+
internalType: 'address'
|
|
9123
|
+
}
|
|
9124
|
+
],
|
|
9125
|
+
stateMutability: 'view'
|
|
9126
|
+
},
|
|
9127
|
+
{
|
|
9128
|
+
type: 'function',
|
|
9129
|
+
name: '_ROUTER',
|
|
9130
|
+
inputs: [],
|
|
9131
|
+
outputs: [
|
|
9132
|
+
{
|
|
9133
|
+
name: '',
|
|
9134
|
+
type: 'address',
|
|
9135
|
+
internalType: 'address'
|
|
9136
|
+
}
|
|
9137
|
+
],
|
|
9138
|
+
stateMutability: 'view'
|
|
9139
|
+
},
|
|
9140
|
+
{
|
|
9141
|
+
type: 'function',
|
|
9142
|
+
name: 'isContractDeployed',
|
|
9143
|
+
inputs: [
|
|
9144
|
+
{
|
|
9145
|
+
name: 'addr',
|
|
9146
|
+
type: 'address',
|
|
9147
|
+
internalType: 'address'
|
|
9148
|
+
}
|
|
9149
|
+
],
|
|
9150
|
+
outputs: [
|
|
9151
|
+
{
|
|
9152
|
+
name: '',
|
|
9153
|
+
type: 'bool',
|
|
9154
|
+
internalType: 'bool'
|
|
9155
|
+
}
|
|
9156
|
+
],
|
|
9157
|
+
stateMutability: 'view'
|
|
9158
|
+
},
|
|
9159
|
+
{
|
|
9160
|
+
type: 'function',
|
|
9161
|
+
name: 'multiCall',
|
|
9162
|
+
inputs: [
|
|
9163
|
+
{
|
|
9164
|
+
name: 'executions',
|
|
9165
|
+
type: 'tuple[]',
|
|
9166
|
+
internalType: 'struct Execution[]',
|
|
9167
|
+
components: [
|
|
9168
|
+
{
|
|
9169
|
+
name: 'target',
|
|
9170
|
+
type: 'address',
|
|
9171
|
+
internalType: 'address'
|
|
9172
|
+
},
|
|
9173
|
+
{
|
|
9174
|
+
name: 'value',
|
|
9175
|
+
type: 'uint256',
|
|
9176
|
+
internalType: 'uint256'
|
|
9177
|
+
},
|
|
9178
|
+
{
|
|
9179
|
+
name: 'callData',
|
|
9180
|
+
type: 'bytes',
|
|
9181
|
+
internalType: 'bytes'
|
|
9182
|
+
}
|
|
9183
|
+
]
|
|
9184
|
+
}
|
|
9185
|
+
],
|
|
9186
|
+
outputs: [],
|
|
9187
|
+
stateMutability: 'payable'
|
|
9188
|
+
},
|
|
9189
|
+
{
|
|
9190
|
+
type: 'function',
|
|
9191
|
+
name: 'multiCallWithDrainToken',
|
|
9192
|
+
inputs: [
|
|
9193
|
+
{
|
|
9194
|
+
name: 'executions',
|
|
9195
|
+
type: 'tuple[]',
|
|
9196
|
+
internalType: 'struct Execution[]',
|
|
9197
|
+
components: [
|
|
9198
|
+
{
|
|
9199
|
+
name: 'target',
|
|
9200
|
+
type: 'address',
|
|
9201
|
+
internalType: 'address'
|
|
9202
|
+
},
|
|
9203
|
+
{
|
|
9204
|
+
name: 'value',
|
|
9205
|
+
type: 'uint256',
|
|
9206
|
+
internalType: 'uint256'
|
|
9207
|
+
},
|
|
9208
|
+
{
|
|
9209
|
+
name: 'callData',
|
|
9210
|
+
type: 'bytes',
|
|
9211
|
+
internalType: 'bytes'
|
|
9212
|
+
}
|
|
9213
|
+
]
|
|
9214
|
+
},
|
|
9215
|
+
{
|
|
9216
|
+
name: 'tokenAndAmounts',
|
|
9217
|
+
type: 'uint256[2][]',
|
|
9218
|
+
internalType: 'uint256[2][]'
|
|
9219
|
+
},
|
|
9220
|
+
{
|
|
9221
|
+
name: 'recipient',
|
|
9222
|
+
type: 'address',
|
|
9223
|
+
internalType: 'address'
|
|
9224
|
+
}
|
|
9225
|
+
],
|
|
9226
|
+
outputs: [],
|
|
9227
|
+
stateMutability: 'payable'
|
|
9228
|
+
},
|
|
9229
|
+
{
|
|
9230
|
+
type: 'function',
|
|
9231
|
+
name: 'semVer',
|
|
9232
|
+
inputs: [],
|
|
9233
|
+
outputs: [
|
|
9234
|
+
{
|
|
9235
|
+
name: 'packedVersion',
|
|
9236
|
+
type: 'bytes6',
|
|
9237
|
+
internalType: 'bytes6'
|
|
9238
|
+
}
|
|
9239
|
+
],
|
|
9240
|
+
stateMutability: 'view'
|
|
9241
|
+
},
|
|
9242
|
+
{
|
|
9243
|
+
type: 'function',
|
|
9244
|
+
name: 'semVerUnpacked',
|
|
9245
|
+
inputs: [],
|
|
9246
|
+
outputs: [
|
|
9247
|
+
{
|
|
9248
|
+
name: 'major',
|
|
9249
|
+
type: 'uint256',
|
|
9250
|
+
internalType: 'uint256'
|
|
9251
|
+
},
|
|
9252
|
+
{
|
|
9253
|
+
name: 'minor',
|
|
9254
|
+
type: 'uint256',
|
|
9255
|
+
internalType: 'uint256'
|
|
9256
|
+
},
|
|
9257
|
+
{
|
|
9258
|
+
name: 'patch',
|
|
9259
|
+
type: 'uint256',
|
|
9260
|
+
internalType: 'uint256'
|
|
9261
|
+
}
|
|
9262
|
+
],
|
|
9263
|
+
stateMutability: 'view'
|
|
9264
|
+
},
|
|
9265
|
+
{
|
|
9266
|
+
type: 'function',
|
|
9267
|
+
name: 'settlementLayerSpender',
|
|
9268
|
+
inputs: [],
|
|
9269
|
+
outputs: [
|
|
9270
|
+
{
|
|
9271
|
+
name: 'tokenSpender',
|
|
9272
|
+
type: 'address',
|
|
9273
|
+
internalType: 'address'
|
|
9274
|
+
}
|
|
9275
|
+
],
|
|
9276
|
+
stateMutability: 'view'
|
|
9277
|
+
},
|
|
9278
|
+
{
|
|
9279
|
+
type: 'function',
|
|
9280
|
+
name: 'singleCall_handleFill',
|
|
9281
|
+
inputs: [
|
|
9282
|
+
{
|
|
9283
|
+
name: 'nonce',
|
|
9284
|
+
type: 'uint256',
|
|
9285
|
+
internalType: 'uint256'
|
|
9286
|
+
},
|
|
9287
|
+
{
|
|
9288
|
+
name: 'sponsor',
|
|
9289
|
+
type: 'address',
|
|
9290
|
+
internalType: 'address'
|
|
9291
|
+
},
|
|
9292
|
+
{
|
|
9293
|
+
name: 'packedData',
|
|
9294
|
+
type: 'bytes',
|
|
9295
|
+
internalType: 'bytes'
|
|
9296
|
+
}
|
|
9297
|
+
],
|
|
9298
|
+
outputs: [
|
|
9299
|
+
{
|
|
9300
|
+
name: '',
|
|
9301
|
+
type: 'bytes4',
|
|
9302
|
+
internalType: 'bytes4'
|
|
9303
|
+
}
|
|
9304
|
+
],
|
|
9305
|
+
stateMutability: 'nonpayable'
|
|
9306
|
+
},
|
|
9307
|
+
{
|
|
9308
|
+
type: 'function',
|
|
9309
|
+
name: 'supportsInterface',
|
|
9310
|
+
inputs: [
|
|
9311
|
+
{
|
|
9312
|
+
name: 'selector',
|
|
9313
|
+
type: 'bytes4',
|
|
9314
|
+
internalType: 'bytes4'
|
|
9315
|
+
}
|
|
9316
|
+
],
|
|
9317
|
+
outputs: [
|
|
9318
|
+
{
|
|
9319
|
+
name: '',
|
|
9320
|
+
type: 'bool',
|
|
9321
|
+
internalType: 'bool'
|
|
9322
|
+
}
|
|
9323
|
+
],
|
|
9324
|
+
stateMutability: 'pure'
|
|
9325
|
+
},
|
|
9326
|
+
{
|
|
9327
|
+
type: 'function',
|
|
9328
|
+
name: 'version',
|
|
9329
|
+
inputs: [],
|
|
9330
|
+
outputs: [
|
|
9331
|
+
{
|
|
9332
|
+
name: '',
|
|
9333
|
+
type: 'bytes',
|
|
9334
|
+
internalType: 'bytes'
|
|
9335
|
+
}
|
|
9336
|
+
],
|
|
9337
|
+
stateMutability: 'view'
|
|
9338
|
+
},
|
|
9339
|
+
{
|
|
9340
|
+
type: 'event',
|
|
9341
|
+
name: 'RouterClaimed_Compact',
|
|
9342
|
+
inputs: [
|
|
9343
|
+
{
|
|
9344
|
+
name: 'sponsor',
|
|
9345
|
+
type: 'address',
|
|
9346
|
+
indexed: false,
|
|
9347
|
+
internalType: 'address'
|
|
9348
|
+
},
|
|
9349
|
+
{
|
|
9350
|
+
name: 'nonce',
|
|
9351
|
+
type: 'uint256',
|
|
9352
|
+
indexed: false,
|
|
9353
|
+
internalType: 'uint256'
|
|
9354
|
+
}
|
|
9355
|
+
],
|
|
9356
|
+
anonymous: false
|
|
9357
|
+
},
|
|
9358
|
+
{
|
|
9359
|
+
type: 'event',
|
|
9360
|
+
name: 'RouterClaimed_Permit2',
|
|
9361
|
+
inputs: [
|
|
9362
|
+
{
|
|
9363
|
+
name: 'sponsor',
|
|
9364
|
+
type: 'address',
|
|
9365
|
+
indexed: false,
|
|
9366
|
+
internalType: 'address'
|
|
9367
|
+
},
|
|
9368
|
+
{
|
|
9369
|
+
name: 'nonce',
|
|
9370
|
+
type: 'uint256',
|
|
9371
|
+
indexed: false,
|
|
9372
|
+
internalType: 'uint256'
|
|
9373
|
+
}
|
|
9374
|
+
],
|
|
9375
|
+
anonymous: false
|
|
9376
|
+
},
|
|
9377
|
+
{
|
|
9378
|
+
type: 'event',
|
|
9379
|
+
name: 'RouterFilled',
|
|
9380
|
+
inputs: [
|
|
9381
|
+
{
|
|
9382
|
+
name: 'recipient',
|
|
9383
|
+
type: 'address',
|
|
9384
|
+
indexed: false,
|
|
9385
|
+
internalType: 'address'
|
|
9386
|
+
},
|
|
9387
|
+
{
|
|
9388
|
+
name: 'nonce',
|
|
9389
|
+
type: 'uint256',
|
|
9390
|
+
indexed: false,
|
|
9391
|
+
internalType: 'uint256'
|
|
9392
|
+
}
|
|
9393
|
+
],
|
|
9394
|
+
anonymous: false
|
|
9395
|
+
},
|
|
9396
|
+
{
|
|
9397
|
+
type: 'error',
|
|
9398
|
+
name: 'ExecutionFailed',
|
|
9399
|
+
inputs: []
|
|
9400
|
+
},
|
|
9401
|
+
{
|
|
9402
|
+
type: 'error',
|
|
9403
|
+
name: 'InvalidRelayerContext',
|
|
9404
|
+
inputs: []
|
|
9405
|
+
},
|
|
9406
|
+
{
|
|
9407
|
+
type: 'error',
|
|
9408
|
+
name: 'MajorVersionTooLarge',
|
|
9409
|
+
inputs: [
|
|
9410
|
+
{
|
|
9411
|
+
name: 'major',
|
|
9412
|
+
type: 'uint256',
|
|
9413
|
+
internalType: 'uint256'
|
|
9414
|
+
}
|
|
9415
|
+
]
|
|
9416
|
+
},
|
|
9417
|
+
{
|
|
9418
|
+
type: 'error',
|
|
9419
|
+
name: 'MinorVersionTooLarge',
|
|
9420
|
+
inputs: [
|
|
9421
|
+
{
|
|
9422
|
+
name: 'minor',
|
|
9423
|
+
type: 'uint256',
|
|
9424
|
+
internalType: 'uint256'
|
|
9425
|
+
}
|
|
9426
|
+
]
|
|
9427
|
+
},
|
|
9428
|
+
{
|
|
9429
|
+
type: 'error',
|
|
9430
|
+
name: 'OnlyDelegateCall',
|
|
9431
|
+
inputs: []
|
|
9432
|
+
},
|
|
9433
|
+
{
|
|
9434
|
+
type: 'error',
|
|
9435
|
+
name: 'PatchVersionTooLarge',
|
|
9436
|
+
inputs: [
|
|
9437
|
+
{
|
|
9438
|
+
name: 'patch',
|
|
9439
|
+
type: 'uint256',
|
|
9440
|
+
internalType: 'uint256'
|
|
9441
|
+
}
|
|
9442
|
+
]
|
|
9443
|
+
},
|
|
9444
|
+
{
|
|
9445
|
+
type: 'error',
|
|
9446
|
+
name: 'SingleCallFailed',
|
|
9447
|
+
inputs: []
|
|
9448
|
+
},
|
|
9449
|
+
{
|
|
9450
|
+
type: 'error',
|
|
9451
|
+
name: 'Unauthorized',
|
|
9452
|
+
inputs: []
|
|
9453
|
+
},
|
|
9454
|
+
{
|
|
9455
|
+
type: 'error',
|
|
9456
|
+
name: 'WithdrawFailed',
|
|
9457
|
+
inputs: []
|
|
9458
|
+
}
|
|
9459
|
+
];
|
|
9081
9460
|
exports.multicallHandlerAbi = [
|
|
9082
9461
|
{
|
|
9083
9462
|
type: 'constructor',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contracts.d.ts","sourceRoot":"","sources":["../../../src/generated/contracts.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAEpC,KAAK,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AACjE,QAAA,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"contracts.d.ts","sourceRoot":"","sources":["../../../src/generated/contracts.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAEpC,KAAK,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AACjE,QAAA,MAAM,iBAAiB,EAAE,iBA2QxB,CAAC;AAEF,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,YAAY,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contracts.dev.d.ts","sourceRoot":"","sources":["../../../src/generated/contracts.dev.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAEpC,KAAK,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AACjE,QAAA,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"contracts.dev.d.ts","sourceRoot":"","sources":["../../../src/generated/contracts.dev.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAEpC,KAAK,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AACjE,QAAA,MAAM,iBAAiB,EAAE,iBA2QxB,CAAC;AAEF,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,YAAY,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -257,6 +257,7 @@ const contractAddresses = {
|
|
|
257
257
|
"intentExecutorAdapterGasRefund": "0x1CF61dd99558088bc6d33464Fdc3A50158d96671",
|
|
258
258
|
"multicallAdapter": "0x2033BAf793ece4a38f0CBae47AF8435620E296c6",
|
|
259
259
|
"multicallHandler": "0xcc57378369bbC7B5bFD2b2F3E8A9f733c16c5F63",
|
|
260
|
+
"singlecallAdapter": "0xa4fC159E93F3D3E08b67D1228D57d5769B3Bff92",
|
|
260
261
|
"ecoHandler": "0xcc57378369bbC7B5bFD2b2F3E8A9f733c16c5F63",
|
|
261
262
|
"paymaster": "0xf2d0A6572252931a685dd4a64db3198eBdC7a4b6",
|
|
262
263
|
"relayerPot": "0xDD6430ad62de02cF8d37Fc3Bc34c6855F34BCbE8",
|
|
@@ -257,6 +257,7 @@ const contractAddresses = {
|
|
|
257
257
|
"intentExecutorAdapterGasRefund": "0xA36E04937BE2C53fA97396b3D254d6cCE6680dc8",
|
|
258
258
|
"multicallAdapter": "0x4cf546ed0F6a4EC4155449686257f698D5044B1F",
|
|
259
259
|
"multicallHandler": "0x200FAb4dEA0388FF9056B3B61f82F981B1de0244",
|
|
260
|
+
"singlecallAdapter": "0xAc373dCFA558C78853D0C09A019e44b2f7410bfE",
|
|
260
261
|
"ecoHandler": "0x200FAb4dEA0388FF9056B3B61f82F981B1de0244",
|
|
261
262
|
"paymaster": "0x1d7df6Ddc7328Ac827EB4D7f171C60AFB7f9A599",
|
|
262
263
|
"relayerPot": "0xf2a4066968cDD6549AE721a15Efcf1e195EaBCb1",
|