Can this be applied for Basechain? ETH gas fees are brutal, Base is cheap -- I didnt see where to make it a Basescan token, not Etherscan.. chains rather I mean -- thanx
i am trying for 3 days now.the code you have given is wrong from the github,dose not match of what you are showing.there are some mistakes.i have copy pasted it and it shows some of the missing key words,if i correct them then syntax error,if i fix it then some other anoying error.kindly update the code please.
GREAT VIDEO, JUST SUBBED!! Im having trouble bc I created the token using sepolia,, great video btw and when I imported to metamask they don't show up. Can you help me, please? Also how do I edit the token later?
Thanks for ur info. If the token have team, for example: 20% owner, 10% project. So when i make the transfer the accounts only receive 30% of all tokens availables. What happens with the rest of the unused coins, where do they stay? thanks
Exactly the same process, just choosing Mainnet instead of a testnet. You need to make sure to have enough ETH in the wallet you would be deploying it from.
You can deploy with a hardware wallet. Just follow the usual steps and deploy through Remix, confirming the transaction in Metamask as you normally would.
My error is this..please help We re sorry we were unable to process your payment for this order .As a result your order darkart66 has been cancelled due to insufficient ERc_20 token on your seller account
You can import a separate contract that can the be imported into your ERC20 smart contract and it will handle the tax for you. Example of such a contract: polygonscan.com/address/0xAA9001C616e73AD50a23454Fe2491d1450a81191#code You can update the tax amount within a hardcoded range of 0.25% to 15%. Make sure to update the tax destination address to your own. Tax can also be toggled on or off.
@@QuickNode Thanks for your response. I am really curious how I would manually code the tax though. I want to learn how it works and create it myself rather than importing another contract.
Instead of importing, you can take that whole contract and put it into yours, then modify the parts you need. Specifically, take a look at function _transfer. It requires or doesn't require tax, based on role, and then transfer funds with additional tax.
@@Glow0110 It’s good to know how it works and you should know what functions are being used. But it’s not a bad idea to import the openzeppelin libraries they are tested and audited and save you alot of time.
Hola You tuber , hazte tu propia criptomoneda para el canal de cantidad de 21 millones, Fijas nunca cambiar, así será verdaderamente comunitario el tema de UNIRSE Y PAGAR , se reemplaza por comprar la criptomoneda del canal o You tuber y el conjunto se beneficia, no solo el You tuber ..la comunidad toda .
I keep getting this error no matter what I do :(. I definitiley have enough polygon in my account: creation of SafeMath errored: Returned error: {"jsonrpc":"2.0","error":"[ethjs-query] while formatting outputs from RPC '{\"value\":{\"code\":-32603,\"data\":{\"code\":-32000,\"message\":\"transaction underpriced\"}}}'","id":6609306065014216} >
there is an showing 32 second which I could not correct.from solidity: ParserError: Expected ';' but got identifier --> mdt.sol:38:5: | 38 | balances[your_wallet_Address]=_totalsupply; | ^^^^^^^^
Amazing tutorial. How do i add value to the token to be able to show on balance
Great Tutorial!
Easy to follow. Many Thanks
simple, fast, easy and effective
thanks bro
so then how to distribute tokens to people? each one by one transaction? by pay Ethereum gas? which is expensive..
Can this be applied for Basechain? ETH gas fees are brutal, Base is cheap -- I didnt see where to make it a Basescan token, not Etherscan.. chains rather I mean -- thanx
hi,
in your article it is on sepolia testnet...
so, it is not on mainnet?!
thanks.
where am suppose to input address which address am i suppose to input
Can you help me create the short programming for my own token to help with my non profit token?
which plugin are you using in this video on remix panel ? i mean what the name of plugin you using to deploy in this video
where is the code in the video for quicknode token
Starting from the construction
how to launch this on the mainnet
Can i be able to sell this token if i want to
What about the tokenomics? And then how to add to liquidity through tokenomics automatically?
Is there a difference between using a library aside from one being more complex than the other?
i am trying for 3 days now.the code you have given is wrong from the github,dose not match of what you are showing.there are some mistakes.i have copy pasted it and it shows some of the missing key words,if i correct them then syntax error,if i fix it then some other anoying error.kindly update the code please.
can i get test net for pulsechain?
is this still valid for Base chain ?? great video thx!
Yes it is
where do you choose Base chain instead of ETH? with Metamask connected to Base and its automatic then OR..? thanx
What's the total amount of fees required?
How can one create and deposit tether erc 20 to coinbase wallet or trust wallet
Also can I transfer this from one wallet to another?
Amazing tutorial man, thanks.
One thing, I notice you didn't use "override" when implementing the methods, any particular reason?
GREAT VIDEO, JUST SUBBED!! Im having trouble bc I created the token using sepolia,, great video btw and when I imported to metamask they don't show up. Can you help me, please? Also how do I edit the token later?
Thanks for ur info. If the token have team, for example: 20% owner, 10% project. So when i make the transfer the accounts only receive 30% of all tokens availables. What happens with the rest of the unused coins, where do they stay? thanks
WOW, Thank you. How do you actually deploy on Ethereum network not testnet?
Exactly the same process, just choosing Mainnet instead of a testnet.
You need to make sure to have enough ETH in the wallet you would be deploying it from.
This is a very good breakdown thx
Glad you loved it! 🤜🤛
Thanks for the explanations. How can a contract be deployed with a hardware wallet like Ledger or BitBox?
You can deploy with a hardware wallet. Just follow the usual steps and deploy through Remix, confirming the transaction in Metamask as you normally would.
Awsome vid. How do I add/change the picture for the token? Thanks
Which picture do you mean specifically?
There's no picture setup at the smart contract level.
@@QuickNode He means after then, like on DEX you see a little icon with the name
Nice! Can you do a video with new functionality like, burn, renounce contact, reflection, antiwhale... Thanks
Great Tutorial!
My error is this..please help
We re sorry we were unable to process your payment for this order .As a result your order darkart66 has been cancelled due to insufficient ERc_20 token on your seller account
thank you for sharing.
Tnx man
znakomicie! trafiłem w końcu na rodaka :)
Do usług :)
@@QuickNode wiesz może jak zrobić tax do tego contractu?
Hey .. great Alpha
How would I create a tax on the token that automatically adds to liquidity?
You can import a separate contract that can the be imported into your ERC20 smart contract and it will handle the tax for you.
Example of such a contract:
polygonscan.com/address/0xAA9001C616e73AD50a23454Fe2491d1450a81191#code
You can update the tax amount within a hardcoded range of 0.25% to 15%.
Make sure to update the tax destination address to your own.
Tax can also be toggled on or off.
@@QuickNode Thanks for your response. I am really curious how I would manually code the tax though. I want to learn how it works and create it myself rather than importing another contract.
Instead of importing, you can take that whole contract and put it into yours, then modify the parts you need.
Specifically, take a look at function _transfer. It requires or doesn't require tax, based on role, and then transfer funds with additional tax.
@@Glow0110 It’s good to know how it works and you should know what functions are being used. But it’s not a bad idea to import the openzeppelin libraries they are tested and audited and save you alot of time.
Potrzebuję pomocy!
you good. dzieki
Too easy
This is not deploying anything show how to deploy and to actually deploy deploy the token into an exchange in order to sell
Hola You tuber , hazte tu propia criptomoneda para el canal de cantidad de 21 millones, Fijas nunca cambiar, así será verdaderamente comunitario el tema de UNIRSE Y PAGAR , se reemplaza por comprar la criptomoneda del canal o You tuber y el conjunto se beneficia, no solo el You tuber ..la comunidad toda .
what is good for make own token based on ethereum (erc20) or binance (bep20)? what is erc20's benefit despite of expensive transaction fee?
I keep getting this error no matter what I do :(. I definitiley have enough polygon in my account: creation of SafeMath errored: Returned error: {"jsonrpc":"2.0","error":"[ethjs-query] while formatting outputs from RPC '{\"value\":{\"code\":-32603,\"data\":{\"code\":-32000,\"message\":\"transaction underpriced\"}}}'","id":6609306065014216}
>
ua-cam.com/video/ajGTxkAmqWI/v-deo.html
maybe you have polygon on eth network ,the guy on this linked video ,has the same problem, i hope it will hellp you ^^
there is an showing 32 second which I could not correct.from solidity:
ParserError: Expected ';' but got identifier
--> mdt.sol:38:5:
|
38 | balances[your_wallet_Address]=_totalsupply;
| ^^^^^^^^