Skip to content

Latest commit

 

History

History
154 lines (108 loc) · 2.73 KB

File metadata and controls

154 lines (108 loc) · 2.73 KB

Base Wallet Sweeper

A Base Wallet Sweeper is a workflow for consolidating eligible ETH or ERC-20 assets from one or more Base wallets into a destination wallet.

This guide covers Base wallet sweeping, wallet consolidation and ERC-20 asset consolidation.

What Is a Base Wallet Sweeper?

Wallet sweeping generally means moving assets from source wallets to a designated destination wallet.

Common use cases include:

  • Wallet consolidation
  • Treasury organization
  • Operational wallet management
  • Asset organization
  • Development environment cleanup

Base Wallet Consolidation

When assets are distributed across multiple wallets, consolidation can simplify wallet management.

A typical workflow is:

Source Wallets
      ↓
Check ETH Balance
      ↓
Check ERC-20 Balances
      ↓
Check Gas Availability
      ↓
Validate Destination
      ↓
Prepare Transfers
      ↓
Sign
      ↓
Broadcast
      ↓
Verify

Sweep ETH on Base

To transfer ETH from a source wallet, the wallet needs enough ETH to cover the transaction fee.

Before sweeping ETH:

  • Check source balance
  • Estimate gas
  • Calculate transferable amount
  • Verify destination address
  • Test the transaction

The amount available for transfer may need to account for the transaction fee.


Sweep ERC-20 Tokens on Base

ERC-20 tokens are controlled by smart contracts.

An ERC-20 consolidation workflow may require:

  • Token contract
  • Source wallet
  • Token balance
  • Destination wallet
  • ETH for gas
  • Transaction signature

A source wallet holding ERC-20 tokens but no ETH may not be able to transfer those tokens until it has sufficient ETH for transaction fees.


Base Wallet Sweeping Workflow

Discover Wallets
      ↓
Check Balances
      ↓
Identify Assets
      ↓
Check Gas
      ↓
Validate Destination
      ↓
Prepare Transactions
      ↓
Review
      ↓
Sign
      ↓
Broadcast
      ↓
Verify

Destination Address

Always verify the destination address before signing.

Recommended checks:

  • Address format
  • Network
  • Destination ownership
  • Expected wallet
  • Transfer amount

Blockchain transfers are generally irreversible.


Base Wallet Sweeper Tool

Bitools provides blockchain wallet management tools for Base.

https://bitools.pro/base/


Security

Never upload private keys to an untrusted wallet sweeper.

A wallet sweeping application should clearly explain how transaction signing is handled.

Never commit:

  • Private keys
  • Seed phrases
  • Wallet passwords

to GitHub.


Related Guides