Thanks😊 for sharing it. Your teaching style is very good. I like how you explain in detail each related concept smoothly rather than rushing through topic fastly.
I'm new to Blockchain Development and your videos helped me so much to grasp all the concepts so fast. You're an amazing teacher and I look forward to learning more and more from you. And since I recently made my own ERC20 token inspired by this tutorial, I sent some of them to the wallet address you mentioned in the descriptions. Thank You So Much man. Please keep up the good work.🙏🤝
A lot of people have been asking how to deploy to mainnet. In retrospect, I should have had that in the video! First add a 'mainnet' configuration in hardhat.config.js, under 'networks'. Then add your mainnet endpoint from Infura to the 'url' field. Finally target that configuration when you issue the deploy command, like this: 'npx hardhat run scripts/deploy.js --network mainnet'. Hope this helps.
@BlockExplorerMedia I was inplementing your code at 1:03:45, but got the error message: TypeError: oceanToken.deployed is not a function at main (C:\Projects\erc-20-tutorial\ocean-token\scripts\deploy.js:8:20) at processTicksAndRejections (node:internal/process/task_queues:95:5) What might be the problem? Can somebody figure it out?
Thanks😊 for sharing it. Your teaching style is very good. I like how you explain in detail each related concept smoothly rather than rushing through topic fastly, and please can you do a front -end
It's been a while, so maybe you realized this already, but at 1:10:00 the explorer shows two transfers. One for the 1,000,000 and another to a different address for 50. I assume that is the blockReward you were trying to find toward the end, no?
Could you create a video showing how to create a Token, and instead of minting rewards to 'miners'. Create an Liquidity pool, and mint rewards to those who are staking? Could be implemented into a Defi/Dapp video
Amazing great stuff a few additional errors here and there (my own doing as only downloaded visual studio code today so was mainly extension errors) Thank you so much for this tutorial, there isn’t another started tutorial I’ve seen as good as this. 🙏🏻
@47:00 I believe there's no need to duplicate the code in the _mint override of the token. Simply using super should suffice, as it will invoke the capped contract logic, which then triggers the ERC20 logic. This approach should maintain functionality without redundant code.
thanks for this great tutorial.. first tutorial in this blockchain space that worked.. everytime i write code i hit a brick wall with deprecated and outdated info.. thanks much when i go mainnet on polygon ill definitely will be sending a fat stack your way thanks again..
Hey bro I have a quick question. This is my first crypto Im messing around with and am a total noob. When it comes to the Capped supply vs the Max Total Supply, I want to own 80% of the token and have 20% on the market. I put the cap amount at 10 mill and my amount to send the owner 8 mil. Does this mean there is only 8 mil in existence and 2 more mil can be minted.... Or does it mean that 2 mill can be bought and or minted? I need there to be a max supply of 10 mil and 2 mil of that is ready to be traded by the public, but etherscan is only showing 8. I know this is a crazy noob question, but I appreciate your time bro! Awesome tutorial!
hey Hex - great question. so for the tokens that you want to make publicly available on the market, those should go to your wallet first (at the time of contract deployment) and then you would transfer those tokens from your wallet into liquidity pools, for example on Uniswap, to be made available for trading. the remaining 20% left unminted could be for miner rewards or any other utility that you can think of. at least that's how I've always done it. some tokens don't have any kind of time-based minting or mining rewards. so at the simplest, you could send yourself 100%, provide 20% of that as liquidity and keep the remaining 80%. hope this helps.
@@BlockExplorerMedia a quick one, have compiled as successful unfortunately on. Js test have only managed 3 passing and 4 failing. Where might I be wrong!!?. Thanks in advance
Thanks for teaching master. I appreciate. Question is, how do you give or set a value to the token. say 1000000 tokens, have seen in the tutorial wher it say 1000000 and value $0.00 | so ho do i change or give value to the tokens.??
Very in-depth, great tutorial. I was wondering what type of environment you are coding in. Are you using Docker, a VM, cloud or your PC? I am new to coding, very basic understanding and am concerned about installing and experimenting with various scripts/software and blockchain based things.
Thank you so much for an amazing explanation! I have a question if you can explain or link to video about the concept of pegging a token to an already established stable coin like USDT C, and what would be the impact in implementing this pegging of a token?
Hey, thank you for the video, super thorough and helpful! One quick question though, is the coding the same for minting and BlockRewards now that Ethereum has moved to Proof of Stake or should we do anything different?
hey thanks alot for your video!! can this be deployed on the Binance Smart chian Network ? im trying to make one that taxes and gives reflections on each transactions.
I got my token launched on Ethereum and added liquidity! Thank you so much. If you ever have time to make a video about how to verify your contract on etherscan to claim ownership (you know with the solidity code input and all that) that would be the best thing ever as Im struggling with it. Anyway, thanks again for the awesome tutorial!
That's awesome...congrats!! I've been trying to think of ideas for some shorter videos - contract verification would be perfect. Will try to get that out soon!
@HexElement congrats on your project, I'm stuck and struggling with .js test. My results are 3 pass, 4 fail. Could you help me somehow on this, thanks inadvance.
Alright so after a lot of debugging I actually got it to work on sepolia, what a great feeling! But, you never went back and taught us how to deploy on mainnet. Is it simply changing the infura endpoint link to mainnet link?
Am getting an "import error" on my code which I don't know how to solve. I downloaded your source code and it is giving me the same error.... I have a feeling that something with my visual code IDE is not right. ,Could someone please help me with this, it's been stressing me out for hours now. Thanks in advance.
Hi, I'm running into this error: npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + npm init + ~~~ + CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundE xception Any help?
So far I've only done Ethereum, but the code would be the same for any EVM-compatible chain (such as Polygon). You would just create a network config specific to that chain in the Hardhat config file and then target that for your deploy. For something like Solana it would be totally different code and process though.
thanks for sharing... hi sir @BlockExplorerMedia i got a question, when I perform the npx hardhat test, it shows "0 passing (1ms) ". I notice your terminal using is "node" instead of "powershell", is that the problems ?& how to solve it? 🙏
Many thanks for your time. In blockchain my USDT shows with ERC20 * * * network ( ERC20 with 3 astrikes). what does it mean? I can not find such network. Kindly tell me what to do?
bro which code editor should I use to install hardhat? I am not familiar with visual code. If you can make a video about visual code for deploying the contract it would be easy to understand.
Please I’m getting this error any help “Before each” hook for “should set the right owner”: HardhatError; HH700: Artifact for contract “sunToken” not Found
Around 15 minutes, we’re trying to deploy and run transactions but I keep getting a “false transaction mined but execution failed” it looks like it’s giving me an error pertaining to gas fees. Anybody know a fix?
In the beggining of the program VS its says: 'npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operabl e program. Check the spelling of the name, or if a path was included, verify that the path is cor rect and try again. At line:1 char:1 + npm init + ~~~ + CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException' can you tell me what to do ?
i got an error : TypeError: Cannot read properties of undefined (reading 'formatEther') How can you successfully compiled it without importing ether.js?
I am getting Error HH411: the library @openzeppelin/contracts, imported from contracts/..., is not installed. Try installing it using npm. Can you help me with this. I tried installing all versions but still throws this error when I compile
i have error please help me : Should set the max capped supply to the argument provided during deployment: TypeError: Cannot read properties of undefined (reading 'formatEther')
Great Tutorial, thanks for sharing! One question: just curious why didn’t use the ownable extension of OpenZeppelin instead of creating a custom access modifier?
I am getting another error when I try to run "npx hardhat run --network rinkeby scripts/deploy.js" This is the error that I am getting: TypeError: no matching function (argument="key", value="deployed", code=INVALID_ARGUMENT, version=6.6.4) I understand that it has something to do with the ethers version that I am using, but I'm not quite sure what the substitute would be for "deployed" in the current version that I am using for ethers, and I haven't been able to find a substitute on the internet for this function. Thanks!
when ever im tring to do npm init.. its giving me an error npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + npm init + ~~~
Why do we need ERC20Capped if we created the same function (_mint) inside our token contract? We do not have a function that overrides cap value so we could just use our cap value that we could declare in constructor.
Oh good catch! I wonder why the transaction is bundled like that. In the past the reward was always a separate transaction. Thanks for letting me know!
I want to be clear that the mining reward part is totally optional! It is just an example of one way of generating new token supply into circulation. There are many different options here and you could also not have any supply-generating mechanism and mint all tokens up front. It's really up to the developer. Hope that helps!
Hey man, am getting this error 'aquaToken contract "before each" hook for "Should set the right owner": HardhatError: HH700: Artifact for contract "AquaToken" not found.' What might be the problem?
Hey I loved your video, I have a dating app just about to launch which I am looking at creating a token for a variety of reward reasons for my users, I develop in javascript and php and wondered if you had a video which would build on this video, and tie in how to programmatically send tokens to users who meet certain goals, any help would be great thanks.
hello sir, i am almost 1 year silent viewer of your videos how to create smart contract, i want to create one , and i want to create smart contract with taxes and airdrop but i dont know how to do it. if you upload how, its a big helps to me, thanks
Great video, very informative. You were showing the ICHC token at the end of the vid, how much did it cost to implement, i.e. website costs, costs to deploy on mainnet etc?
I don't remember the exact costs tbh but probably $1-2k when it was all said and done. Most expensive was the ERC20 contract deploy, followed by the liquidity pool. Website costs $0 (Netlify). Also, I deployed the smart contract twice because I made a fatal mistake the first time! Of course deployment costs should be much less now. Hope that helps.
Thanks for the quality explanation. I've a question, on the Transfer method I checked the original ERC20 implementation and they didn't multiply the amount input with the decimals... however it is still working (the balance got updated correctly).. how is that
Imagine the post office uses tokens/nfts to ship letters and such. It would include a built in tracking system. The nft could represent the Stamp and include to:/from: information. Or nfts that represent land in real world. Owners of the nft land could be incentivized by rental income, land development, etc. Or small business nft that would be backed by material or products. In lieu of rasing capital and giving away % in your company. Take a nft loan by backing your purchase orders with nfts designed to return a certain %.
do all those extras you say at the end of the video and in case you already made them at the time of writing , thank you and rest assure i will watch them
Thanks😊 for sharing it. Your teaching style is very good. I like how you explain in detail each related concept smoothly rather than rushing through topic fastly.
Thanks Aditya - I appreciate the feedback and glad you liked it.
9.45@@BlockExplorerMedia
I'm new to Blockchain Development and your videos helped me so much to grasp all the concepts so fast. You're an amazing teacher and I look forward to learning more and more from you. And since I recently made my own ERC20 token inspired by this tutorial, I sent some of them to the wallet address you mentioned in the descriptions. Thank You So Much man. Please keep up the good work.🙏🤝
Thanks so much and congrats on your token. May I know the smart contract address so I can import the token in my wallet? Nice work : )
A lot of people have been asking how to deploy to mainnet. In retrospect, I should have had that in the video! First add a 'mainnet' configuration in hardhat.config.js, under 'networks'. Then add your mainnet endpoint from Infura to the 'url' field. Finally target that configuration when you issue the deploy command, like this: 'npx hardhat run scripts/deploy.js --network mainnet'. Hope this helps.
@BlockExplorerMedia
I was inplementing your code at 1:03:45, but got the error message:
TypeError: oceanToken.deployed is not a function
at main (C:\Projects\erc-20-tutorial\ocean-token\scripts\deploy.js:8:20)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
What might be the problem?
Can somebody figure it out?
I loved this video very new to coding and got stuck on some coding errors, but your explaining was very detailed and I watched the whole thing anyway
I admire Web3 Infinity's team's transparency. It's an endeavour with moral integrity.
Thanks😊 for sharing it. Your teaching style is very good. I like how you explain in detail each related concept smoothly rather than rushing through topic fastly, and please can you do a front -end
It's been a while, so maybe you realized this already, but at 1:10:00 the explorer shows two transfers. One for the 1,000,000 and another to a different address for 50. I assume that is the blockReward you were trying to find toward the end, no?
Amazing video, the best tutorial on how to create and deploy a token, I hope you keep uploading content more often!
Awesome video. Awesome teacher. Thank you for taking the time to teach the world about web3 effectively :)
Could you create a video showing how to create a Token, and instead of minting rewards to 'miners'. Create an Liquidity pool, and mint rewards to those who are staking? Could be implemented into a Defi/Dapp video
Amazing great stuff a few additional errors here and there (my own doing as only downloaded visual studio code today so was mainly extension errors) Thank you so much for this tutorial, there isn’t another started tutorial I’ve seen as good as this. 🙏🏻
@47:00 I believe there's no need to duplicate the code in the _mint override of the token. Simply using super should suffice, as it will invoke the capped contract logic, which then triggers the ERC20 logic. This approach should maintain functionality without redundant code.
thanks, bro, I created one token and I sent it to your wallet 1m also... thanks again
Hello bhai
How do i contact you?
the soidity version also takes into consideration the openzeppelin pragma solidity version , so keep that in mind
The correct link contains a subdirectory "blob", that was what you missed.
What is presale, private presale l, fairlaunch, stealth launch etc. Plz make a video on that sir! On all the launch types
thanks for this great tutorial.. first tutorial in this blockchain space that worked.. everytime i write code i hit a brick wall with deprecated and outdated info.. thanks much when i go mainnet on polygon ill definitely will be sending a fat stack your way thanks again..
how is your token doing mate.
honestelly sir this is one of the best vidio
Your block reward was showing in the tx hash! Just FYI, 🙂
Hey bro I have a quick question. This is my first crypto Im messing around with and am a total noob. When it comes to the Capped supply vs the Max Total Supply, I want to own 80% of the token and have 20% on the market. I put the cap amount at 10 mill and my amount to send the owner 8 mil. Does this mean there is only 8 mil in existence and 2 more mil can be minted.... Or does it mean that 2 mill can be bought and or minted? I need there to be a max supply of 10 mil and 2 mil of that is ready to be traded by the public, but etherscan is only showing 8.
I know this is a crazy noob question, but I appreciate your time bro! Awesome tutorial!
hey Hex - great question. so for the tokens that you want to make publicly available on the market, those should go to your wallet first (at the time of contract deployment) and then you would transfer those tokens from your wallet into liquidity pools, for example on Uniswap, to be made available for trading. the remaining 20% left unminted could be for miner rewards or any other utility that you can think of. at least that's how I've always done it. some tokens don't have any kind of time-based minting or mining rewards. so at the simplest, you could send yourself 100%, provide 20% of that as liquidity and keep the remaining 80%. hope this helps.
@@BlockExplorerMedia You just saved my life! Thats exactly what I was wanting to figure out. Thank you man, you got a subscriber!
You bet - thanks!!
@@HexElementcan you guys teach me i will pay.
@@BlockExplorerMedia a quick one, have compiled as successful unfortunately on. Js test have only managed 3 passing and 4 failing. Where might I be wrong!!?. Thanks in advance
Continue making valuable content sir. God bless you more.
Thank you for this video! I have learned a lot of stuff through it, you did an excellent job! 👏
Thanks for teaching master. I appreciate. Question is, how do you give or set a value to the token. say 1000000 tokens, have seen in the tutorial wher it say 1000000 and value $0.00 | so ho do i change or give value to the tokens.??
Can you show or direct me to adding the coding for a “creator reward” for receiving a percentage on every transaction , thank you great walk through 👍
Exited for this video ,, great work man
🤜🤛
Thanks Somnath! 🤛
thanks for this amazing video, I have a question can I use your strategy and implement it to my senior project? I am using angular as frontend.
Very in-depth, great tutorial. I was wondering what type of environment you are coding in. Are you using Docker, a VM, cloud or your PC? I am new to coding, very basic understanding and am concerned about installing and experimenting with various scripts/software and blockchain based things.
If you want to split the sale, First Pre-sale and after that the main one, how to be organized in the contract?
Thank you so much for an amazing explanation! I have a question if you can explain or link to video about the concept of pegging a token to an already established stable coin like USDT C, and what would be the impact in implementing this pegging of a token?
Hey, thank you for the video, super thorough and helpful! One quick question though, is the coding the same for minting and BlockRewards now that Ethereum has moved to Proof of Stake or should we do anything different?
hey thanks alot for your video!! can this be deployed on the Binance Smart chian Network ? im trying to make one that taxes and gives reflections on each transactions.
I got my token launched on Ethereum and added liquidity! Thank you so much.
If you ever have time to make a video about how to verify your contract on etherscan to claim ownership (you know with the solidity code input and all that) that would be the best thing ever as Im struggling with it.
Anyway, thanks again for the awesome tutorial!
That's awesome...congrats!! I've been trying to think of ideas for some shorter videos - contract verification would be perfect. Will try to get that out soon!
How did you launch your token on Ethereum? Did you use remix and how much did the gas cost? Thanks 🙏
I can help
Sir can you teach me?
@HexElement congrats on your project, I'm stuck and struggling with .js test. My results are 3 pass, 4 fail. Could you help me somehow on this, thanks inadvance.
Thanks a lot for this! Just a question: now that Rinkeby has been deprecated, would you suggest (to a newby like me…) how to use another testnet?
you can using sepolia for same
Rinkeby has now been turned into Sepolia by the same company “alchemy” so I just went ahead and used the sepolia test network
Alright so after a lot of debugging I actually got it to work on sepolia, what a great feeling!
But, you never went back and taught us how to deploy on mainnet. Is it simply changing the infura endpoint link to mainnet link?
Yes, exactly. I pinned a comment to the top explaining. A lot of people have been asking this. Thanks!
Am getting an "import error" on my code which I don't know how to solve. I downloaded your source code and it is giving me the same error.... I have a feeling that something with my visual code IDE is not right. ,Could someone please help me with this, it's been stressing me out for hours now. Thanks in advance.
Hi, I'm running into this error:
npm : The term 'npm' is not recognized as the
name of a cmdlet, function, script file, or
operable program. Check the spelling of the
name, or if a path was included, verify that
the path is correct and try again.
At line:1 char:1
+ npm init
+ ~~~
+ CategoryInfo : ObjectNotFound:
(npm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundE
xception
Any help?
hey have you installed npm
node package manager
do you have any videos on creating a coin on different block chain network or all of the are the same?
So far I've only done Ethereum, but the code would be the same for any EVM-compatible chain (such as Polygon). You would just create a network config specific to that chain in the Hardhat config file and then target that for your deploy. For something like Solana it would be totally different code and process though.
Thankyou you really made it look so simple ❤️. Can you tell me if can make NFT on testnet and buy that nft using test ethers? Can i do that?
Error: cannot estimate gas; transaction may fail or may require manual gas limit Help me
same here. are there any solution here?
thanks for sharing... hi sir @BlockExplorerMedia i got a question, when I perform the npx hardhat test, it shows "0 passing (1ms) ". I notice your terminal using is "node" instead of "powershell", is that the problems ?& how to solve it? 🙏
Same, unsure what's goin on
Great video, and I see the Rinkeby is now longer available so can you expand on using Sapolia or any others?
😊 awesome video, explanation on point
Many thanks for your time. In blockchain my USDT shows with ERC20 * * * network ( ERC20 with 3 astrikes). what does it mean? I can not find such network. Kindly tell me what to do?
bro which code editor should I use to install hardhat? I am not familiar with visual code. If you can make a video about visual code for deploying the contract it would be easy to understand.
vs code
it says "infinite gas" for me on creating the constructor, what did i do wrong ? thanks
Please I’m getting this error any help
“Before each” hook for “should set the right owner”:
HardhatError; HH700: Artifact for contract “sunToken” not Found
Can we use goerli test network ? in my system there is not rinkeby network avaliable. Can you please help me how can i go further?
Hi did you find a solution ? Thanks
@@kirazami2282 not yetbro!
Around 15 minutes, we’re trying to deploy and run transactions but I keep getting a “false transaction mined but execution failed” it looks like it’s giving me an error pertaining to gas fees. Anybody know a fix?
In the beggining of the program VS its says: 'npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operabl
e program. Check the spelling of the name, or if a path was included, verify that the path is cor
rect and try again.
At line:1 char:1
+ npm init
+ ~~~
+ CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException'
can you tell me what to do ?
i got an error :
TypeError: Cannot read properties of undefined (reading 'formatEther')
How can you successfully compiled it without importing ether.js?
I got the same, you managed to solve this?
Hi all! Would you share ,please, how to import assign a picture/avatar for a token?
I am getting Error HH411: the library @openzeppelin/contracts, imported from contracts/..., is not installed. Try installing it using npm. Can you help me with this. I tried installing all versions but still throws this error when I compile
i have error please help me : Should set the max capped supply to the argument provided during deployment:
TypeError: Cannot read properties of undefined (reading 'formatEther')
Thank You So much Sir I learned Alot
Any MEV Blocker protection included in this?
Sir, thanks for your video. Is it possible to get support in real time guidance in setting up our token. ??
Good morning, to create a BSC network, do I need to change the router or do I have to change something else in the code?
Great Tutorial, thanks for sharing! One question: just curious why didn’t use the ownable extension of OpenZeppelin instead of creating a custom access modifier?
I am getting another error when I try to run "npx hardhat run --network rinkeby scripts/deploy.js"
This is the error that I am getting:
TypeError: no matching function (argument="key", value="deployed", code=INVALID_ARGUMENT, version=6.6.4)
I understand that it has something to do with the ethers version that I am using, but I'm not quite sure what the substitute would be for "deployed" in the current version that I am using for ethers, and I haven't been able to find a substitute on the internet for this function. Thanks!
when ever im tring to do npm init.. its giving me an error npm :
The term 'npm' is not recognized as the name of a
cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that
the path is correct and try again.
At line:1 char:1
+ npm init
+ ~~~
Please, a tutorial to launch an ICO 🙏🙏🙏
Why do we need ERC20Capped if we created the same function (_mint) inside our token contract? We do not have a function that overrides cap value so we could just use our cap value that we could declare in constructor.
can you include initial token pricing in the contract before deployment?
Is it possible to add custom metadata to a token?
It does display the mining reward in rinkeby etherscan, but it is inside the same transaction. Look at 1:10:00, there are two token transfers ;D
Oh good catch! I wonder why the transaction is bundled like that. In the past the reward was always a separate transaction. Thanks for letting me know!
Please can you clarify, why do we need the mining reward? Just a little confused about the need for that part of the code.
I want to be clear that the mining reward part is totally optional! It is just an example of one way of generating new token supply into circulation. There are many different options here and you could also not have any supply-generating mechanism and mint all tokens up front. It's really up to the developer. Hope that helps!
thank you so much, this was an amazing video
I am trying all on your steps, but i am stuck at the contract RTXToken is ERC20 {....sadly i cant compile with success.
So how do you load the coin to main net and on crypto exchanges?
great tutorial. Thanks so much
BRO , YOU ARE LEGEND
great teacher.. thank you
Hey man, am getting this error 'aquaToken contract
"before each" hook for "Should set the right owner":
HardhatError: HH700: Artifact for contract "AquaToken" not found.' What might be the problem?
Hello, thanks very much for video. Process is same for bep20 token too? Can I find out? And can we add halving?
how much gas in ether did you pay for this creating of erc20? Amazing tutorial!! I really like it.
I don't remember exactly but the fee for deploying to testnet is nominal, and uses test Ether only. Deploying to mainnet will be more expensive.
@@BlockExplorerMedia how about BEP20 is it the same with Erc20 in terms of the cost of deploying to the mainnet?
Hey I loved your video, I have a dating app just about to launch which I am looking at creating a token for a variety of reward reasons for my users, I develop in javascript and php and wondered if you had a video which would build on this video, and tie in how to programmatically send tokens to users who meet certain goals, any help would be great thanks.
Thanks a lot, i am grateful for the video. cheers
what will be the procedure to deploy it to main net and does it gonna cost me something ??
Thanks for that Video
How can i Pic Tax fees in this Contract?
Thanks
hello sir, i am almost 1 year silent viewer of your videos how to create smart contract, i want to create one , and i want to create smart contract with taxes and airdrop but i dont know how to do it. if you upload how, its a big helps to me, thanks
Can you make a video where we create an ICO - full dApp ?
Yeah I've been thinking about something like that to follow this one up with - thanks for the suggestion.
thanks..I finished my own version of it
Very nice and wonder full video
Awesome Video, can you do one similar with a tax function opposed to a burn function?
on minute 53 i received this error on 3 last test function: TypeError: Cannot read properties of undefined (reading 'address')
Sir, your explanations have that clarity. Can I print token name,symbol on console like how you've shown the deployed address on console?
11:08 Why does the message “infinite gas 733800 gas” appear to me? How can I avoid this? Thanks!
great video, sir.
Great video, very informative. You were showing the ICHC token at the end of the vid, how much did it cost to implement, i.e. website costs, costs to deploy on mainnet etc?
I don't remember the exact costs tbh but probably $1-2k when it was all said and done. Most expensive was the ERC20 contract deploy, followed by the liquidity pool. Website costs $0 (Netlify). Also, I deployed the smart contract twice because I made a fatal mistake the first time! Of course deployment costs should be much less now. Hope that helps.
@@BlockExplorerMedia What was the fatal mistake?
at 44.35 you dont have artifacts folder and then 44.41 artifacts is shown here how
I love your videos mate! :) ...
Thanks Bela, glad they're helpful!
Nice Vijeo...
but i'd like to see a video on how to orgaise an airdrop of your token, or even get it listed on binance or coinbase.
Hello thank you for the video, how can we deploy to main net, can you help with the configuration?
I pinned a comment to the top of this video explaining how. Let me know if you have any other questions.
Thanks for the quality explanation. I've a question, on the Transfer method I checked the original ERC20 implementation and they didn't multiply the amount input with the decimals... however it is still working (the balance got updated correctly).. how is that
i just want to say thank you You are a Hero
Thanks for the kind words!
Imagine the post office uses tokens/nfts to ship letters and such. It would include a built in tracking system. The nft could represent the Stamp and include to:/from: information.
Or nfts that represent land in real world. Owners of the nft land could be incentivized by rental income, land development, etc.
Or small business nft that would be backed by material or products. In lieu of rasing capital and giving away % in your company. Take a nft loan by backing your purchase orders with nfts designed to return a certain %.
will you get in trouble if you don't include MIT license statement?
do all those extras you say at the end of the video and in case you already made them at the time of writing , thank you and rest assure i will watch them
I think I can't transfer the tokens to another address, the transaction keeps failing
Brilliant video thank you