Skip to content

Instantly share code, notes, and snippets.

View ericlie's full-sized avatar

Eric Lie ericlie

View GitHub Profile
### Keybase proof
I hereby claim:
* I am ericlie on github.
* I am ericlie (https://keybase.io/ericlie) on keybase.
* I have a public key ASBh2Cotl7QbQHr7hZJ76jUkU_ggcumLps4k5N_vNrSoyAo
To claim this, I am signing this object:
@ericlie
ericlie / BEP20.sol
Created January 10, 2022 03:27
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.16+commit.9c3226ce.js&optimize=true&runs=200&gist=
pragma solidity 0.5.16;
interface IBEP20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.