Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created June 14, 2023 16:59
Show Gist options
  • Save TehilaFavourite/d43681af2912bf29721d1eda6e8baeb7 to your computer and use it in GitHub Desktop.
Save TehilaFavourite/d43681af2912bf29721d1eda6e8baeb7 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.2 <0.9.0;
interface Token {
enum TokenType {
Fungible,
NonFungible
}
struct Coin {
string obverse;
string reverse;
}
function transfer(address recipient, uint amount) external;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment