ODCdataManagersERC20extensions
ERC20Transfers
Abstract contract that provides the transfer operations of the ERC20 Data Manager
transfer
Transfers amount
tokens from the caller's account to to
Parameters
Name | Type | Description |
---|---|---|
to | address | Address to transfer tokens to |
amount | uint256 | Amount of tokens to transfer |
Return Values
Name | Type | Description |
---|---|---|
[0] | bool | True if the transfer was successful, reverts otherwise |
transferFrom
Transfers amount
tokens from from
to to
The caller must have allowance for from
's tokens of at least amount
Parameters
Name | Type | Description |
---|---|---|
from | address | Address to transfer tokens from |
to | address | Address to transfer tokens to |
amount | uint256 | Amount of tokens to transfer |
Return Values
Name | Type | Description |
---|---|---|
[0] | bool | True if the transfer was successful, reverts otherwise |