Ownable
Functionality available for contracts that implement the
IOwnable
interface.
get
Retrieve the wallet address of the owner of the smart contract.
const owner = await contract.owner.get();
Configuration
set
Set the owner address of the contract.
const txResult = await contract.owner.set("{{wallet_address}}");