Address Contract Verified
Address
0xA8e5C6A6bA7B46B2E3F026Ce85D63285D1CA3C6f
Balance
0 ETH
Nonce
1
Code Size
297 bytes
Creator
0xabbE1bBd...EE5a at tx 0x94b4f65e...1be0fc
Indexed Transactions
0
Contract Bytecode
297 bytes
0x6080604052348015600e575f5ffd5b50600436106030575f3560e01c80632e64cec11460345780636057361d14604e575b5f5ffd5b603a6066565b60405160459190608d565b60405180910390f35b606460048036038101906060919060cd565b606e565b005b5f5f54905090565b805f8190555050565b5f819050919050565b6087816077565b82525050565b5f602082019050609e5f8301846080565b92915050565b5f5ffd5b60af816077565b811460b8575f5ffd5b50565b5f8135905060c78160a8565b92915050565b5f6020828403121560df5760de60a4565b5b5f60ea8482850160bb565b9150509291505056fea2646970667358221220d534868d1b34f9d9a2fcac732259e55fd34242cbfa935062a0281d3fda07a95264736f6c634300081f0033
Verified Source Code Full Match
Compiler: v0.8.31+commit.fd3a2265
EVM: osaka
Optimization: No
1_Storage.sol 29 lines
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.2 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
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;
}
}
Read Contract
retrieve 0x2e64cec1 → uint256
Write Contract 1 functions
These functions modify contract state and require a wallet transaction to execute.
store 0x6057361d
uint256 num
Recent Transactions
No transactions found for this address