block/SimpleStorage.abi
2025-03-24 16:57:37 +08:00

44 lines
747 B
Plaintext

[
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "key",
"type": "uint256"
},
{
"internalType": "string",
"name": "value",
"type": "string"
}
],
"name": "set",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "key",
"type": "uint256"
}
],
"name": "get",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]