2021-06-28 07:05:57 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-04-04 16:54:44 +00:00
|
|
|
pragma solidity ^0.4.24;
|
2019-07-02 07:28:57 +00:00
|
|
|
|
|
|
|
/**
|
2021-06-28 07:05:57 +00:00
|
|
|
* @dev Interface of the ERC20 standard as defined in the EIP.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
|
|
|
interface IERC20 {
|
2022-04-04 16:54:44 +00:00
|
|
|
function name() external view returns (string memory);
|
|
|
|
|
|
|
|
function symbol() external view returns (string memory);
|
|
|
|
|
|
|
|
function decimals() external view returns (uint8);
|
|
|
|
|
2019-07-02 07:28:57 +00:00
|
|
|
/**
|
|
|
|
* @dev Returns the amount of tokens in existence.
|
|
|
|
*/
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the amount of tokens owned by `account`.
|
|
|
|
*/
|
|
|
|
function balanceOf(address account) external view returns (uint256);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Moves `amount` tokens from the caller's account to `recipient`.
|
|
|
|
*
|
|
|
|
* Returns a boolean value indicating whether the operation succeeded.
|
|
|
|
*
|
2021-06-28 07:05:57 +00:00
|
|
|
* Emits a {Transfer} event.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
2022-03-04 15:06:35 +00:00
|
|
|
function transfer(address recipient, uint256 amount)
|
|
|
|
external
|
|
|
|
returns (bool);
|
2019-07-02 07:28:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the remaining number of tokens that `spender` will be
|
2021-06-28 07:05:57 +00:00
|
|
|
* allowed to spend on behalf of `owner` through {transferFrom}. This is
|
2019-07-02 07:28:57 +00:00
|
|
|
* zero by default.
|
|
|
|
*
|
2021-06-28 07:05:57 +00:00
|
|
|
* This value changes when {approve} or {transferFrom} are called.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
2022-03-04 15:06:35 +00:00
|
|
|
function allowance(address owner, address spender)
|
|
|
|
external
|
|
|
|
view
|
|
|
|
returns (uint256);
|
2019-07-02 07:28:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
|
|
|
|
*
|
|
|
|
* Returns a boolean value indicating whether the operation succeeded.
|
|
|
|
*
|
2021-06-28 07:05:57 +00:00
|
|
|
* IMPORTANT: Beware that changing an allowance with this method brings the risk
|
2019-07-02 07:28:57 +00:00
|
|
|
* that someone may use both the old and the new allowance by unfortunate
|
|
|
|
* transaction ordering. One possible solution to mitigate this race
|
|
|
|
* condition is to first reduce the spender's allowance to 0 and set the
|
|
|
|
* desired value afterwards:
|
|
|
|
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
|
|
|
|
*
|
2021-06-28 07:05:57 +00:00
|
|
|
* Emits an {Approval} event.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
|
|
|
function approve(address spender, uint256 amount) external returns (bool);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Moves `amount` tokens from `sender` to `recipient` using the
|
|
|
|
* allowance mechanism. `amount` is then deducted from the caller's
|
|
|
|
* allowance.
|
|
|
|
*
|
|
|
|
* Returns a boolean value indicating whether the operation succeeded.
|
|
|
|
*
|
2021-06-28 07:05:57 +00:00
|
|
|
* Emits a {Transfer} event.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
2021-06-28 07:05:57 +00:00
|
|
|
function transferFrom(
|
|
|
|
address sender,
|
|
|
|
address recipient,
|
|
|
|
uint256 amount
|
|
|
|
) external returns (bool);
|
2019-07-02 07:28:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Emitted when `value` tokens are moved from one account (`from`) to
|
|
|
|
* another (`to`).
|
|
|
|
*
|
|
|
|
* Note that `value` may be zero.
|
|
|
|
*/
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
|
2021-06-28 07:05:57 +00:00
|
|
|
* a call to {approve}. `value` is the new allowance.
|
2019-07-02 07:28:57 +00:00
|
|
|
*/
|
2022-03-04 15:06:35 +00:00
|
|
|
event Approval(
|
|
|
|
address indexed owner,
|
|
|
|
address indexed spender,
|
|
|
|
uint256 value
|
|
|
|
);
|
2019-07-02 07:28:57 +00:00
|
|
|
}
|