Platform Wallet
The Stagenet includes a Platform Wallet — a built-in account with special capabilities:
- Send transactions without signing or paying gas
- Has unlimited ERC20 token balances (every token)
- Has unlimited ERC20 allowances (infinite approval of every token to every possible spender)
Platform Wallet Account Details
- Address: 0x0000009a70d19209bff99a14702b8301233d87fd
- Private Key: b4c897750b17f429b360744f5568ccb7b1a1c4ceeccbdfea2b5d8c9091eaf261
Sending transactions
Anywhere you can interact with a contract via transaction — e.g. in the Explorer or Contract Workspace — you’ll see two options:
- Your browser wallet
- Platform Wallet (instant + gasless)
Choosing the Platform Wallet sends the transaction immediately with no signing step.
The Platform Wallet is returned by eth_accounts and is used for eth_sendTransaction, so you can use it not just in the UI but also in your own code.
ERC20 tokens
Maximum balance
When token.balanceOf(platformWalletAddress) is called on your Stagenet, the result is always type(uint256).max.
In simple terms: the Platform Wallet has the maximum balance of any ERC20 token.
Maximum allowance
When token.allowance(platformWalletAddress, spender) is called on your Stagenet, for any spender address, the result is always type(uint256).max.
In simple terms: the Platform Wallet has approved the maximum allowance to every possible spender.