XDC Rust SDK
XRC20 Token Standard
XRC20 is the technical standard for fungible tokens issued on the XDC blockchain. XRC20 tokens have the property that makes each token exactly similar to one another in type and value. These tokens are blockchain-based assets that hold similar value and can easily be sent and received.
Read Methods
name() → string
Returns the name of the token.
symbol() → string
Returns the symbol of the token, usually a shorter version of the name.
decimals() → uint8
Returns the number of decimals used to get its user representation. For example, if decimal equals 2, a balance of 505 tokens should be displayed to a user as 5,05 (505 / 10 ** 2).
Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei.
totalSupply() → uint256
Returns the number of tokens in existence.
balanceOf(address account) → uint256
Returns the number of tokens owned by the account.
allowance(address owner, address spender) → uint256
Returns the remaining number of tokens that the spender will be allowed to spend on behalf of the owner through transferFrom
. It is zero by default.
Write Methods
approve(address spender, uint256 amount)
Sets amount as the allowance of spender over the caller’s tokens.
transfer(address recipient, uint256 amount)
Moves tokens from the caller’s account to the recipient.
transferFrom(address sender, address recipient, uint256 amount)
Moves tokens from sender to recipient using the allowance mechanism. The amount is deducted from the caller’s allowance.
increaseAllowance(address spender, uint256 addedValue)
Automatically increases the allowance granted to spender by the caller.
decreaseAllowance(address spender, uint256 addedValue)
Automatically decreases the allowance granted to spender by the caller.
Usage
Add web3 = "0.17.0" to your Cargo.toml
:
Create an instance of XRC20
Now, you can interact with the XRC20 read methods.
name() → string
Returns the name of the token.
balanceOf(address token,address account) → uint256
Returns the amount of tokens owned byaccount
.
For write methods, we need to create an instance of XDC-Client and token owner's private key.
transfer(address token, address recipient, uint256 amount)
→ Moves amount tokens from the caller’s account to recipient. It will return a transaction hash.
approve(address token, address spender, uint256 amount)
→ Sets amount as the allowance of spender over the caller’s tokens. It will return a transaction hash.
For increaseAllowance
and decreaseAllowance
we need an instance of XRC20 and private key of owner:
decreaseAllowance(XifninAccount account, address token, address owner, address spender, uint256 subtractedValue)
Automatically decreases the allowance granted to spender by the caller. This is an alternative to approve.
Emits an Approval event indicating the updated allowance.
Last updated