Skip to content
Closed
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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ EVM_CUSTODY_SEED=
EVM_WALLETS=
EVM_DELEGATION_ENABLED=true

# Pimlico Paymaster for gasless EIP-7702 transactions
# Get your API key from https://dashboard.pimlico.io/
PIMLICO_API_KEY=

ETH_WALLET_ADDRESS=
ETH_WALLET_PRIVATE_KEY=xxx

Expand Down
3 changes: 3 additions & 0 deletions src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,9 @@ export class Configuration {
delegationEnabled: process.env.EVM_DELEGATION_ENABLED === 'true',
delegatorAddress: '0x63c0c19a282a1b52b07dd5a65b58948a07dae32b',

// Pimlico Paymaster for gasless EIP-7702 transactions
pimlicoApiKey: process.env.PIMLICO_API_KEY,

walletAccount: (accountIndex: number): WalletAccount => ({
seed: this.blockchain.evm.depositSeed,
index: accountIndex,
Expand Down
Loading
Loading