@hashflow/contracts-evm
Version:
EVM Smart Contracts for Solidity
153 lines • 3.73 kB
JSON
[
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "pool",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "operations",
"type": "address"
}
],
"name": "CreatePool",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "poolCreator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "authorizationStatus",
"type": "bool"
}
],
"name": "UpdatePoolCreatorAuthorization",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "poolImpl",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "prevPoolImpl",
"type": "address"
}
],
"name": "UpdatePoolImplementation",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "poolCreator",
"type": "address"
}
],
"name": "allowedPoolCreators",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "address",
"name": "signer",
"type": "address"
}
],
"name": "createPool",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "router",
"type": "address"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "router",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "poolCreator",
"type": "address"
},
{
"internalType": "bool",
"name": "status",
"type": "bool"
}
],
"name": "updatePoolCreatorAuthorization",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "poolImpl",
"type": "address"
}
],
"name": "updatePoolImpl",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]