EtherVault
This contract is initialized with 2^128 Ether and allows authorized addresses to release Ether.
Only the contract owner can authorize or deauthorize addresses.
Authorized
event Authorized(address addr, bool authorized)
EtherReleased
event EtherReleased(address to, uint256 amount)
onlyAuthorized
modifier onlyAuthorized()
receive
receive() external payable
Function to receive Ether
Only authorized addresses can send Ether to the contract
init
function init(address addressManager) external
Initialize the contract with an address manager
Parameters
Name | Type | Description |
---|---|---|
addressManager | address | The address of the address manager |
releaseEther
function releaseEther(uint256 amount) public
Transfer Ether from EtherVault to the sender, checking that the sender is authorized.
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | Amount of Ether to send. |
releaseEther
function releaseEther(address recipient, uint256 amount) public
Transfer Ether from EtherVault to a designated address, checking that the sender is authorized.
Parameters
Name | Type | Description |
---|---|---|
recipient | address | Address to receive Ether. |
amount | uint256 | Amount of ether to send. |
authorize
function authorize(address addr, bool authorized) public
Set the authorized status of an address, only the owner can call this.
Parameters
Name | Type | Description |
---|---|---|
addr | address | Address to set the authorized status of. |
authorized | bool | Authorized status to set. |
isAuthorized
function isAuthorized(address addr) public view returns (bool)
Get the authorized status of an address.
Parameters
Name | Type | Description |
---|---|---|
addr | address | Address to get the authorized status of. |