Bitcoin Forum
October 21, 2025, 01:08:08 AM *
News: Pumpkin carving contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Ich erstelle kostenlose Fixed Supply ERC20 Tokens  (Read 52 times)
Bernd680 (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 8


View Profile
October 08, 2025, 08:59:35 PM
 #1

Ich hoffe  das es erlaubt ist? Da ich mal ne Pause brauche vom Proggen und am Bot fuddeln will Biete ich an:


Hey zusammen 👋 / Hey everyone 👋

Ich biete euch an, euren eigenen ERC20 Token kostenlos zu erstellen — perfekt für Projekte, Tests oder einfach zum Spaß!
I’m offering to create your own ERC20 token completely for free — great for projects, testing, or just for fun!


---

🔹 Was ich anbiete / What I offer

Ich erstelle und deploye euch einen Fixed Supply ERC20 Token (begrenzter Vorrat, kein Minting oder Owner Control).
I’ll create and deploy a Fixed Supply ERC20 token (no minting, no owner control).

Ihr / You get:

den gesamten Token Supply direkt in eure Wallet / the entire supply sent directly to your wallet

verifizierten Smart Contract (Source Code + Ownership) / verified contract (source code + ownership)

Name, Symbol und Supply sind frei wählbar / Name, symbol, and total supply are your choice

Deployment auf jeder EVM-kompatiblen Chain (Ethereum, BSC, Polygon, Arbitrum, Avalanche, Base, usw.)
/ Deployment on any EVM-compatible chain (Ethereum, BSC, Polygon, Arbitrum, Avalanche, Base, etc.)



---

💰 Kosten / Cost

Der Token selbst ist komplett kostenlos.
Ich möchte lediglich die Gasgebühren für das Deployment ersetzt haben.
The token itself is 100% free — you only need to cover the gas fees for deployment.

(Je nach Chain meist nur ein paar Cent oder Dollar / Usually just a few cents or dollars depending on the chain.)


---

🧩 Beispiel / Example

> Name: MyFirstToken
Symbol: MFT
Supply: 1,000,000
Chain: Polygon



Ich deploye → du bekommst den Token → fertig ✅
I deploy → you receive the token → done ✅


---
🔒 Sicherheit / Transparency

Ich deploye transparent — du bekommst:
I deploy transparently — you’ll get:

Contract-Adresse / Contract address

Verifizierten Code (Explorer-Link) / Verified source code (on explorer)

Volle Kontrolle über den Token / Full control — no minting, no hidden functions, no owner powers



---

Fragen? Einfach hier posten oder PN schicken 😊
Questions? Just reply below or send me a PM 😊

Im Endeffekt ist mir das bei Pol egal da kostet es vlt. 2 Cent ... Wenn mal einer fragt schicke ich auch ne wallet mit priv key.. Mich nerven diese völlig überzogenen Angebote die 30 Dollar  und mehr Verlangen so kann man die etwas ärgern ;-).


Ich hoffe das es nicht als Scam gewertet wird. Nicht alle würden ihre Großmutter für 2 Dollar verkaufen.




N0sferatu
Member
**
Offline Offline

Activity: 508
Merit: 87

[insert coin to continue]


View Profile
October 10, 2025, 09:10:44 AM
 #2

Eine schöne Idee, sowas anzubieten. Hatte sowas mal mithilfe von "gratis" Onlinetools ausprobiert - aber wie du auch schon erwähnt hast, sind die Gebühren meist exorbitant hoch.
Wäre toll, wenn du mir folgenden Token erstellen könntest:

Chain: BSC
Token Name: VOTE
Supply: 20.000.000 (20 Mio.)

Meine Adresse: 0x6C71733d34Cb1ADD7eA2C2612F8E1F3299cf666A

Brauchst du noch mehr Infos? Lass mich gern wissen, was du an Gas-Gebühren bekommst.

Erinnere ich mich richtig, dass die Höhe der Gebühr auch maßgeblich durch den Supply bestimmt wird?

██████████████████      gomining.com     ██████████████████
   ♥️   Be Part Of The Mining Revolution   ♥️  
██████████████████      gomining.com     ██████████████████
Bernd680 (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 8


View Profile
October 12, 2025, 06:40:29 PM
Last edit: October 12, 2025, 08:39:49 PM by Bernd680
 #3

Wisster was ich verschenke das script. Ihr müsst node js installen fertig. Könnt gerne das script Prüfen gibt keine calls ausser in die chain  der contract ist auch sehr simpel gehalten .


https://github.com/hannesgudaber/Token/blob/main/README.md


https://github.com/hannesgudaber/Token



ERC20 Token Deployer
A Python tool for easily creating and deploying ERC20 Tokens on custom blockchain networks.

Features
✅ Custom Chain Compatible - Works with any EVM-compatible chain
✅ Automatic Contract Generation - Creates Solidity code based on your input
✅ Compilation - Automatically compiles the contract
✅ ABI Export - Saves ABI for later use
✅ Deployment - Deploys the token directly on the chain
✅ Deployment Info - Saves all important information

Installation
Install Python (Version 3.8 or higher)

Install Dependencies:

pip install -r requirements.txt
Usage
Interactive Mode
Simply start the script:

python token_deployer.py
The script will guide you through the following steps:

Enter Token Details:

Token Name (e.g. "My Awesome Token")
Token Symbol/Ticker (e.g. "MAT")
Initial Supply (e.g. "1000000")
Contract is automatically generated and compiled

Optional: Immediate Deployment:

Enter RPC URL of the chain
Enter Private Key
Token will be deployed
Generated Files
After execution, the following files will be created:

{SYMBOL}Token.sol - The Solidity Contract Code
{SYMBOL}Token_ABI.json - The Contract ABI
{SYMBOL}Token_deployment.json - Deployment Information (if deployed)
Compatible Chains
The tool works with all EVM-compatible chains, e.g.:

Ethereum Mainnet/Testnets

RPC: https://rpc.ankr.com/eth
Binance Smart Chain

RPC: https://bsc-dataseed.binance.org/
Polygon

RPC: https://polygon-rpc.com/
Avalanche C-Chain

RPC: https://api.avax.network/ext/bc/C/rpc
Arbitrum

RPC: https://arb1.arbitrum.io/rpc
Optimism

RPC: https://mainnet.optimism.io
Custom/Local Chains

RPC: http://localhost:8545 (e.g. Hardhat/Ganache)
Example
$ python token_deployer.py

============================================================
 ERC20 TOKEN DEPLOYER
============================================================

STEP 1: Token Details
----------------------------------------
Token Name (e.g. 'My Token'): Super Coin
Token Symbol/Ticker (e.g. 'MTK'): SUPER
Initial Supply (e.g. '1000000'): 5000000

STEP 2: Contract Generation
----------------------------------------
✓ Contract saved to: SUPERToken.sol

STEP 3: Contract Compilation
----------------------------------------
Installing Solidity Compiler 0.8.20...
✓ Contract compiled successfully
✓ ABI saved to: SUPERToken_ABI.json

STEP 4: Deployment
----------------------------------------
Do you want to deploy the token now? (y/n): y

RPC URL: https://polygon-rpc.com/
✓ Connected to chain (Chain ID: 137)

Private Key (starts with 0x): 0x...
Deploying from: 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
Sending transaction...
Waiting for confirmation...

============================================================
✓ TOKEN SUCCESSFULLY DEPLOYED!
============================================================
Contract Address: 0x1234567890AbcdEF1234567890AbcdEF12345678
Transaction Hash: 0xabcdef...
Block Number: 12345678
Gas Used: 987654
============================================================

✓ Deployment info saved to: SUPERToken_deployment.json
Security Notes
⚠️ IMPORTANT:

Never share your Private Key
Keep your Private Key safe
Use a testnet for testing
Verify the RPC URL before deployment
Smart Contract Features
The generated ERC20 Token includes:

✅ Standard ERC20 functions (transfer, approve, transferFrom)
✅ 18 decimal places
✅ Events (Transfer, Approval)
✅ Security checks
✅ Solidity 0.8.20 (with built-in overflow checks)
Programmatic Usage
You can also use the deployer in your own scripts:

from token_deployer import ERC20TokenDeployer

deployer = ERC20TokenDeployer()

# Generate contract
contract_code = deployer.generate_solidity_contract("My Token", "MTK", 1000000)
deployer.save_contract_to_file(contract_code, "MTK")

# Compile
deployer.compile_contract(contract_code, "MTK")
deployer.save_abi("MTK")

# Connect to chain and deploy
deployer.connect_to_chain("https://polygon-rpc.com/")
deployer.deploy_contract("0xYOUR_PRIVATE_KEY", "MTK")
Troubleshooting
"Connection to chain failed"
Check the RPC URL
Make sure you have internet access
Try an alternative RPC URL
"Insufficient funds"
Make sure your wallet has enough balance for gas
Check the gas costs on the respective chain
Compiler Errors
The script automatically installs the Solidity Compiler
If problems persist: Manual installation with solc-select install 0.8.20
License
MIT License - Free to use

Support
For questions or issues, create an issue in the repository.






Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!