Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DEPLOYMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,4 @@
| `EtherspotWallet` | `mantleSepolia` | [0xfB32cef50CfB0A0F9f6d37A05828b2F56EfdfE20](https://explorer.sepolia.mantle.xyz/address/0xfB32cef50CfB0A0F9f6d37A05828b2F56EfdfE20) | [0x1b3172f91340874c9878e9ab9c191fadb4090a33c27536f2c338542195735e9a](https://explorer.sepolia.mantle.xyz/tx/0x1b3172f91340874c9878e9ab9c191fadb4090a33c27536f2c338542195735e9a) |
| `VerifyingPaymaster` | `mantleSepolia` | [0x42963C58DE382D34CB5a7f77b703e645FcE6DD26](https://explorer.sepolia.mantle.xyz/address/0x42963C58DE382D34CB5a7f77b703e645FcE6DD26) | [0x61660cc6345b39f80c5033857affeee48ee18771fd4e497b12d7d4eba29647fa](https://explorer.sepolia.mantle.xyz/tx/0x61660cc6345b39f80c5033857affeee48ee18771fd4e497b12d7d4eba29647fa) |
| `VerifyingPaymaster` | `xdcApothem` | [0x2b7cBFA523E0D0546C6d1F706b79dB7B6d910bdA]() | [0xb461afbbd90ab7f43c1fa9e4d8bb0a70587854a87aa04bef5253599ba53071ca]() |
| `VerifyingPaymaster` | `suaveToliman` | [0x898c530A5fA37720DcF1843AeCC34b6B0cBaEB8a](https://explorer.toliman.suave.flashbots.net/address/0x898c530A5fA37720DcF1843AeCC34b6B0cBaEB8a) | [0xd4452631f3d6cde65b5a475a34a8b4691bc03fb01f38a3f42ac067667e066a31](https://explorer.toliman.suave.flashbots.net/tx/0xd4452631f3d6cde65b5a475a34a8b4691bc03fb01f38a3f42ac067667e066a31) |
17 changes: 13 additions & 4 deletions config/etherscan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const etherscan: HardhatUserConfig['etherscan'] = {
amoy: process.env.POLYSCAN_API_KEY!,
mantleSepolia: process.env.BASEGOERLI_BLOCKSCOUT_API_KEY!, // works with same key
xdcApothem: process.env.XDC_API_KEY!,
suaveToliman: process.env.BASEGOERLI_BLOCKSCOUT_API_KEY!, // works with same key
},
customChains: [
{
Expand Down Expand Up @@ -274,10 +275,18 @@ const etherscan: HardhatUserConfig['etherscan'] = {
network: 'odyssey',
chainId: 911867,
urls: {
apiURL: "https://odyssey-explorer.ithaca.xyz/api",
browserURL: "https://odyssey-explorer.ithaca.xyz/"
}
}
apiURL: 'https://odyssey-explorer.ithaca.xyz/api',
browserURL: 'https://odyssey-explorer.ithaca.xyz/',
},
},
{
network: 'suaveToliman',
chainId: 33626250,
urls: {
apiURL: 'https://explorer.toliman.suave.flashbots.net/api',
browserURL: 'https://explorer.toliman.suave.flashbots.net/',
},
},
],
};

Expand Down
5 changes: 5 additions & 0 deletions config/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@ const networks: HardhatUserConfig['networks'] = {
url: 'https://odyssey.ithaca.xyz',
accounts: [process.env.DEPLOYER_PRIVATE_KEY!],
},
suaveToliman: {
chainId: 33626250,
url: 'https://rpc.toliman.suave.flashbots.net',
accounts: [process.env.DEPLOYER_PRIVATE_KEY!],
},
dev: { url: 'http://localhost:8545' },
};
export default networks;
3 changes: 1 addition & 2 deletions deploy/011_verify_verifying_paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ const verifyVerifyingPaymaster: DeployFunction = async function (

await hre.run('verify:verify', {
address: PAYMASTER_ADDRESS,
contract:
'src/etherspot-wallet-v1/paymaster/VerifyingPaymaster.sol:VerifyingPaymaster',
contract: 'src/paymaster/VerifyingPaymaster.sol:VerifyingPaymaster',
constructorArguments: [ENTRY_POINT_ADDRESS, VERIFYING_SIGNER_ADDRESS],
});
};
Expand Down
1 change: 1 addition & 0 deletions deployments/suaveToliman/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
33626250
Loading