Basis Bonds
The Basis Bond contract handles the minting and burning of Basis Bonds.
Bond.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 Bonds to the recipient_
account. Returns TRUE
if successful.function burn(uint256 amount) public onlyOperator override
Burns
amount
Basis Bonds from the operator's account.function burnFrom(address account, uint256 amount) public onlyOperator overrideBurns amount_ Basis Cash from the operator's account. Returns TRUE if successful.
Burns
amount
Basis Bonds from the account
account.Last modified 2yr ago