-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.config.ts
More file actions
41 lines (40 loc) · 2.66 KB
/
Copy pathscripts.config.ts
File metadata and controls
41 lines (40 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export const scriptConfig: Record<string, string> = {
"smartwallet:gelato": "smartwallet-scripts/gelato/index.ts",
"smartwallet:kernel:4337": "smartwallet-scripts/kernel/only-4337/index.ts",
"smartwallet:kernel:4337+7702": "smartwallet-scripts/kernel/4337+7702/index.ts",
"relay:sponsored": "relay-scripts/testSponsoredCall.ts",
"relay:sponsored:erc2771": "relay-scripts/testSponsoredCallERC2771.ts",
"relay:sponsored:erc2771:signature": "relay-scripts/testSponsoredCallERC2771WtihSignature.ts",
"relay:sponsored:erc2771:concurrent": "relay-scripts/testConcurrentSponsoredCallERC2771.ts",
"relay:syncfee": "relay-scripts/testCallWithSyncFee.ts",
"relay:syncfee:erc2771": "relay-scripts/testSyncFeeCallERC2771.ts",
"bundler:estimate:gas-tank": "bundler-scripts/eth_estimateUserOperationGas/Gas-Tank/SponsoredGas.ts",
"bundler:estimate:native": "bundler-scripts/eth_estimateUserOperationGas/Native-Payments/NativeGasPayments.ts",
"bundler:estimate:erc20": "bundler-scripts/eth_estimateUserOperationGas/OnChain-Paymasters/Erc20GasPayments.ts",
"bundler:estimate:sponsored": "bundler-scripts/eth_estimateUserOperationGas/OnChain-Paymasters/SponsoredGas.ts",
"bundler:send:gas-tank": "bundler-scripts/eth_sendUserOperation/Gas-Tank/SponsoredGas.ts",
"bundler:send:native": "bundler-scripts/eth_sendUserOperation/Native-Payments/NativeGasPayments.ts",
"bundler:send:erc20": "bundler-scripts/eth_sendUserOperation/OnChain-Paymasters/Erc20GasPayments.ts",
"bundler:send:sponsored": "bundler-scripts/eth_sendUserOperation/OnChain-Paymasters/SponsoredGas.ts",
};
export const scriptNames: Record<string, string> = {
"smartwallet:gelato": "Smart Wallet - Gelato",
"smartwallet:kernel:4337": "Smart Wallet - Kernel 4337",
"smartwallet:kernel:4337+7702": "Smart Wallet - Kernel 4337+7702",
"relay:sponsored": "Relay - Sponsored Call",
"relay:sponsored:erc2771": "Relay - Sponsored Call ERC2771",
"relay:sponsored:erc2771:signature":
"Relay - Sponsored Call ERC2771 (Signature)",
"relay:sponsored:erc2771:concurrent":
"Relay - Concurrent Sponsored Call ERC2771",
"relay:syncfee": "Relay - Sync Fee Call",
"relay:syncfee:erc2771": "Relay - Sync Fee Call ERC2771",
"bundler:estimate:gas-tank": "Bundler - Estimate Gas (Gas Tank)",
"bundler:estimate:native": "Bundler - Estimate Gas (Native)",
"bundler:estimate:erc20": "Bundler - Estimate Gas (ERC20)",
"bundler:estimate:sponsored": "Bundler - Estimate Gas (Sponsored)",
"bundler:send:gas-tank": "Bundler - Send UserOp (Gas Tank)",
"bundler:send:native": "Bundler - Send UserOp (Native)",
"bundler:send:erc20": "Bundler - Send UserOp (ERC20)",
"bundler:send:sponsored": "Bundler - Send UserOp (Sponsored)",
};