JRC21
interface IJRC21{
// return the JRC21_ISSUER_CONTRACT
function issuer() external view returns(address);
// estimate JRC21 transfer fee
function estimateFee(uint256 value) external view returns (uint256);
// set the min JRC21 transfer fee,only JRC21 issuer
function setMinFee(uint256 value)external;
}Principle
Issue
Call
Determine whether it is a JRC21 token contract
Gas Recharge
Permit+Transfer(recommend)
Approve and Transfer
Contract ABI
Last updated