// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.17; // 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); }