The goal: share your social media links on Telegram groups that detect newly verified tokens, and attract new buyers.
- python >= 3
- brownie
Modify the contract Token.sol
with your info in the ./contracts
directory
You can build the contract, to check any errors:
$ brownie build --all
Configure the script in the
brownie-config.yaml
$ export ETHERSCAN_TOKEN=YOUR_ETHERSCAN_KEY
$ export BASESCAN_TOKEN=YOUR_ETHERSCAN_KEY
$ export PUBLIC_KEY=YOUR_PUBLIC_KEY
export PRIVATE_KEY=YOUR_PRIVATE_KEY
You can write this lines in your
.bashrc
file, to not rewrite the configuration before each launch.
Check networks config:
$ brownie networks list true
You can add your own network in
netword-config.yaml
(example wrote in)
Import the file to the brownie configuration:
$ brownie networks import ./network-config.yaml
Check the network configuration:
$ brownie networks list true
Tutorial: brownie networks tutorial
$ brownie run scripts/spam_erc20.py --network base-sepolia
Replace
base-sepolia
by the network to deploy contracts
After each contract deployment, the contract address is wrote in a file in the ./addresses
folder
Thanks for your help improving the project!
Feel free to open issue / create pull requests!
This script would not have been possible without the great work done in:
This script is licensed under the MIT License, similar to the content used within it.