Skip to content

This project creates token named CakirCoin on Rinkeby Network

Notifications You must be signed in to change notification settings

TekyaygilFethi/CakirToken

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cakir Token

This project allows you to create a token named CakirToken.

.env file

In Brownie folder, create an .env file. This file should contain secret information for your Brownie part of your application:


WEB3_INFURA_PROJECT_ID={YOUR_ID}
ETHERSCAN_TOKEN={YOUR_ETHERSCAN_TOKEN}

WEB3_INFURA_PROJECT_ID is the ID of the project you've created on https://infura.io/

ETHERSCAN_TOKEN is a token that allows you to deploy your contract on chain

Setting Up The Program

  1. Clone the project
git clone https://github.com/TekyaygilFethi/CakirToken.git
  1. First create a virtual environment. Assume we want to give myenv as a venv name.
python3 -m venv myvenv
  1. Activate the virtual environment FOR MAC:
source myvenv/bin/activate

FOR WINDOWS:

myvenv/Scripts/activate
  1. Install the required Brownie dependency
pip3 install eth-brownie
  1. You can change your token's name in contracts/CakirCoin.sol file with any value

  2. Compile the sol file in order to work with it

brownie compile
  1. Deploy your contract with running the deploy script:
brownie run scripts/deploy.py --network rinkeby
  1. After deployment check your token contract creation from https://rinkeby.etherscan.io/address/{your_contract_address}

📚 For Medium story, please follow here

About

This project creates token named CakirCoin on Rinkeby Network

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published