Smart Contracts
Deploy and interact with CashmereVM and EVM smart contracts
Deploy Contract
Sample: CRC-20 Token
// SPDX-License-Identifier: MIT
pragma cashmereum ^1.0.0;
import "@cashmereum/contracts/CRC20.sol";
contract MyToken is CRC20 {
constructor(
string memory name,
string memory symbol,
uint256 initialSupply
) CRC20(name, symbol) {
_mint(msg.sender, initialSupply * 10**9);
}
// Auto-includes: transfer, approve,
// allowance, burn, permit (EIP-2612)
}
Recent Deployments