Send a good morning message directly to the Base blockchain. Permanently stored on-chain!
🖼️
Mint NFT
Mint up to 15 NFTs per wallet to increase onchain contract interactions on Base blockchain.
⚡
Deploy Contract
Deploy ERC-20, ERC-721, or custom Solidity contracts directly to Base mainnet.
×
👋 Send GM Onchain
23/280 characters
×
🖼️ Mint Onchain Tool NFT
Onchain Tool NFT Collection
✨ Free mint - up to 15 per wallet
🎯 Loading...
Each NFT is free to mint (you only pay gas)
You'll receive unique NFTs from the Onchain Tool collection
Onchain Tool NFT #? - #?
×
⚡ Deploy Smart Contract
✨ Deploy Storage Contract
Deploy a simple storage contract to Base mainnet. You can store and retrieve numbers on the blockchain.
Storage Contract
Store & retrieve numbers (Ready to deploy!)
ERC-20 Token
Coming soon...
ERC-721 NFT
Coming soon...
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.2 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256) {
return number;
}
}
This contract is pre-compiled and ready for deployment to Base mainnet