Basis Cash
The Basis Cash contract handles the minting and burning of Basis Cash
Cash.sol
Deployed at
[0xcontract_address]
on the Ethereum mainnet, [other_testnets] testnets.This contract is yet to be deployed.
function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool)
Mints
amount_
Basis Cash to the recipient_
account. Returns TRUE
if successful.function burn(uint256 amount) public onlyOperator override
Burns
amount
Basis Cash from the operator's account.function burnFrom(address account, uint256 amount) public onlyOperator override
Burns
amount
Basis Cash from the account
account.Last modified 2yr ago