curio-wrapper-truffle/contracts/ICurio.sol

12 lines
488 B
Solidity
Raw Normal View History

2023-01-29 18:29:54 +00:00
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.17;
2022-02-11 04:17:00 +00:00
// Curio is not quite ERC-20 compliant
interface ICurio {
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value) external;
function transfer(address _to, uint256 _value) external;
function ipfs_hash() external view returns (string memory);
}