Skip to content

Instantly share code, notes, and snippets.

@a102525417
Created April 16, 2024 19:21
Show Gist options
  • Save a102525417/388340e3a045f58b5c90701e5c869854 to your computer and use it in GitHub Desktop.
Save a102525417/388340e3a045f58b5c90701e5c869854 to your computer and use it in GitHub Desktop.
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.8.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./lib/BEP20.sol";
contract Token is BEP20 {
constructor (
)
BEP20("ZECONG_TOKEN", "ZET")
{
_setupDecimals(18);
_mint(_msgSender(), 5000000e18);
}
}
@a102525417
Copy link
Author

token first

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment