|
Title: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: Bernd680 on October 08, 2025, 08:59:35 PM 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. Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: N0sferatu on October 10, 2025, 09:10:44 AM 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? Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: Bernd680 on October 12, 2025, 06:40:29 PM 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. Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: Bernd680 on October 21, 2025, 04:14:31 PM 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? https://bscscan.com/tx/0x1670cf4d59cde74a5517d371c6d543732a249a5bde9726437e6878f0039fc585 Hier sorry hatte viel Arbeit um die Ohren habs gerade erst gelesen die Nachricht.. Viel Spass damit. Code: // SPDX-License-Identifier: MIT Das der contract zum verifizieren bei BSscan Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: MaxMueller on October 24, 2025, 07:38:09 AM Finde ich saustark von dir @Bernd680 !!!
Kannst du die einzelnen Schritte für IT-Noobs wie mich vielleicht ein wenig ausführlicher beschreiben, würde das sicher mal ausprobieren.... @mole0815: ich finde der Faden passt inzwischen vielleicht sogar eher in altcoins... da sehen ihn bestimmt mehr Nutzer als hier im marktbereich?! Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: Bernd680 on October 24, 2025, 06:17:18 PM 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? https://bscscan.com/tx/0x1670cf4d59cde74a5517d371c6d543732a249a5bde9726437e6878f0039fc585 Hier sorry hatte viel Arbeit um die Ohren habs gerade erst gelesen die Nachricht.. Viel Spass damit. Code: // SPDX-License-Identifier: MIT Das der contract zum verifizieren bei BSscan Also gekostet hat es auf Bsc 5 cent. Nicht wie bei den services 30- 50 Dollar ;-). Also ich mach gerne eine Beschreibung ich muss mir nur mal Gedanken machen wie ich das am besten umsetze das es gut verständlich ist. Das ist nicht Böse sondern ich muss die Perspektive ändern.. Ich hab neben der Arbeit an meiner Vision gearbeitet. meinem Trading System bzw. engine und jetzt hab ich kaum noch Ideen. Ich weiss auch irgendwie nicht wo ich sowas Posten kann das is schon bissl heavy geworden. Ich hab mir nie Gedanken gemacht welche Tragweite das Too leigentlich hat. Das Token Deployer modul war z.b. ein teil davon den ich ja hier nun öffentlcih gemacht habe. Vieleicht hätt mal einer wirklich zeit mal das tool zu sondieren. Ich schreibe es hier mal rein: # https://github.com/hannesgudaber/Trading_Bot_engine/blob/main/README.md Title: Re: Ich erstelle kostenlose Fixed Supply ERC20 Tokens Post by: mole0815 on October 28, 2025, 09:42:01 AM @mole0815: ich finde der Faden passt inzwischen vielleicht sogar eher in altcoins... da sehen ihn bestimmt mehr Nutzer als hier im marktbereich?! Ich war mir auch nicht ganz sicher, wie wir am besten damit umgehen. Nun hat es sich nochmal geändert, wenn man das hier sieht: Also ich mach gerne eine Beschreibung ich muss mir nur mal Gedanken machen wie ich das am besten umsetze das es gut verständlich ist. Das ist nicht Böse sondern ich muss die Perspektive ändern.. Ich hab neben der Arbeit an meiner Vision gearbeitet. meinem Trading System bzw. engine und jetzt hab ich kaum noch Ideen. Ich weiss auch irgendwie nicht wo ich sowas Posten kann das is schon bissl heavy geworden. Ich hab mir nie Gedanken gemacht welche Tragweite das Too leigentlich hat. Das Token Deployer modul war z.b. ein teil davon den ich ja hier nun öffentlcih gemacht habe. Vieleicht hätt mal einer wirklich zeit mal das tool zu sondieren. Ich schreibe es hier mal rein: # https://github.com/hannesgudaber/Trading_Bot_engine/blob/main/README.md So würde der Thread auch schon fast in "Trading und Spekulation" oder "Projektentwicklung" passen. Vorschläge sind willkommen ;D |