Skip to content

jetmaxcoin/jetusd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

JETUSD

Simple BEP20-style token contract for Binance Smart Chain, written in Solidity 0.5.16.

Overview

  • Contract file: JETUSD.sol
  • Standard: BEP20 interface with approve/transfer/transferFrom plus allowance helpers
  • Ownership: Ownable is included but there are no owner-only functions in this contract

Token details

  • Name: JETUSD
  • Symbol: JETUSD
  • Decimals: 18
  • Total supply: 99,999,999,999 JETUSD (minted to the deployer at deployment)

Functions

Core functions follow the BEP20 interface:

  • totalSupply, balanceOf, transfer
  • allowance, approve, transferFrom
  • increaseAllowance, decreaseAllowance

Internal helpers (_transfer, _approve, _burn, _burnFrom) are present but not exposed as public/external entry points.

Build and deploy

There is no build system in this repo. Use a Solidity 0.5.16 compiler (or Remix) to compile JETUSD.sol, then deploy the JETUSD contract.

Example (solc CLI):

solc --version
solc --optimize --bin --abi JETUSD.sol

Notes

  • The entire supply is created in the constructor and assigned to the deployer.
  • There are no mint functions and no public burn functions.
  • No license file is included in this repository.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published