ERC20 Token Tutorial | Create Your Own Cryptocurrency

2022 ж. 10 Қыр.
123 716 Рет қаралды

In this ERC20 token tutorial you will learn how to create your own cryptocurrency as an ERC20 token on Ethereum. We cover all of the steps from development and testing to deployment. Topics covered include testing in the Remix editor, creating a project with Hardhat, token design, ERC20 smart contract development, smart contract testing and deployment to Ethereum.
Project repo on GitHub:
github.com/jspruance/erc20-tu...
Ethereum ERC20 Standard:
ethereum.org/en/developers/do...
Open Zeppelin ERC20 Documentation:
docs.openzeppelin.com/contrac...
If you've created your own token, I'd love for you to send me some (if you want)!
My wallet address:
0x3B5c1926441EC9bE1FA179831f9E6ea9b9205b2f

Пікірлер
  • 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.

    @adityasingh11156@adityasingh11156 Жыл бұрын
    • Thanks Aditya - I appreciate the feedback and glad you liked it.

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
  • 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

    @alexismollet6751@alexismollet6751 Жыл бұрын
  • 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. 🙏🏻

    @AroseLove@AroseLove9 ай бұрын
  • 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

    @tokunbosuleimon4802@tokunbosuleimon4802 Жыл бұрын
  • 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.🙏🤝

    @suryarghyasaha4984@suryarghyasaha498411 ай бұрын
    • 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 : )

      @BlockExplorerMedia@BlockExplorerMedia7 ай бұрын
  • Awesome video. Awesome teacher. Thank you for taking the time to teach the world about web3 effectively :)

    @TRVLCreative@TRVLCreative Жыл бұрын
  • Thank you for this video! I have learned a lot of stuff through it, you did an excellent job! 👏

    @rosariosway@rosariosway9 ай бұрын
  • Amazing video, the best tutorial on how to create and deploy a token, I hope you keep uploading content more often!

    @osempo@osempo6 ай бұрын
  • 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?

    @serjoka77@serjoka77 Жыл бұрын
  • Exited for this video ,, great work man 🤜🤛

    @somnathmondal5561@somnathmondal5561 Жыл бұрын
    • Thanks Somnath! 🤛

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
  • the soidity version also takes into consideration the openzeppelin pragma solidity version , so keep that in mind

    @GauravSinghnikumb@GauravSinghnikumb11 ай бұрын
  • Continue making valuable content sir. God bless you more.

    @ivanlagade@ivanlagade Жыл бұрын
  • great teacher.. thank you

    @brunorocha9898@brunorocha9898 Жыл бұрын
  • honestelly sir this is one of the best vidio

    @UsmanKhan-nc2md@UsmanKhan-nc2md Жыл бұрын
  • 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?

    @telego1151@telego1151Ай бұрын
  • 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?

    @MikeDougherty@MikeDougherty11 ай бұрын
  • 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.

    @williamwallace5707@williamwallace5707Ай бұрын
  • great tutorial. Thanks so much

    @danielasema5988@danielasema5988 Жыл бұрын
  • thank you so much, this was an amazing video

    @thatwasgaming6225@thatwasgaming6225 Жыл бұрын
  • Thank You So much Sir I learned Alot

    @UsmanKhan-nc2md@UsmanKhan-nc2md Жыл бұрын
  • 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..

    @BillyBishop589@BillyBishop589 Жыл бұрын
  • 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.

    @andrecastro7817@andrecastro7817 Жыл бұрын
  • Brilliant video thank you

    @paulgallant3675@paulgallant36759 ай бұрын
  • 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

    @REZAZIMohamedabdessamed@REZAZIMohamedabdessamed Жыл бұрын
  • Thanks a lot, i am grateful for the video. cheers

    @abelasaya8709@abelasaya87096 ай бұрын
  • Thanks for this 🙏

    @makindeoluwasegun4188@makindeoluwasegun4188 Жыл бұрын
  • Hello, thanks very much for video. Process is same for bep20 token too? Can I find out? And can we add halving?

    @jhhnadkins5669@jhhnadkins5669 Жыл бұрын
  • @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.

    @jacektrocinski6337@jacektrocinski63375 ай бұрын
  • thanks..I finished my own version of it

    @srijanshovit844@srijanshovit844 Жыл бұрын
  • 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 👍

    @nosktech7818@nosktech7818 Жыл бұрын
  • great video, sir.

    @JohnDoe34548@JohnDoe34548Ай бұрын
  • Sir, your explanations have that clarity. Can I print token name,symbol on console like how you've shown the deployed address on console?

    @deekshanayak5688@deekshanayak5688 Жыл бұрын
  • Derived contract must override function "_mint". Two or more base classes define function with same name and parameter types when I inherited those two contracts.

    @drakegao816@drakegao816 Жыл бұрын
  • BRO , YOU ARE LEGEND

    @chams2385@chams2385 Жыл бұрын
  • 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.??

    @elmmacwebmobileapps@elmmacwebmobileapps Жыл бұрын
  • 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@BlockExplorerMedia7 ай бұрын
    • @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?

      @bethchen87@bethchen876 ай бұрын
  • Very nice and wonder full video

    @cryptotree999@cryptotree999 Жыл бұрын
  • What is presale, private presale l, fairlaunch, stealth launch etc. Plz make a video on that sir! On all the launch types

    @ride66@ride6611 ай бұрын
  • Thank you for your Usefull videos.

    @geradinfotso@geradinfotso Жыл бұрын
  • Great Communication

    @kingcryptotv1539@kingcryptotv1539 Жыл бұрын
  • thanks for the video 🙌🙌

    @spyboy3924@spyboy3924 Жыл бұрын
  • Thank you for this. I was reading the solidity lang documentation and noticed that for large numbers it is ok to use 10e6 instead of 10000000 but when watching this and other videos no one seems to be using that style. Is there a reason why? my coding background is in matlab so for me its much easier, and cleaner to use the 10e6 notation

    @MrPotatoHeadFX@MrPotatoHeadFX Жыл бұрын
  • 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?

    @mobiactive@mobiactive2 ай бұрын
  • Awesome Video, can you do one similar with a tax function opposed to a burn function?

    @armagosa2@armagosa2 Жыл бұрын
  • Your block reward was showing in the tx hash! Just FYI, 🙂

    @jcw1197@jcw1197 Жыл бұрын
  • really nice tutorial !!!

    @0cho8cho72@0cho8cho72 Жыл бұрын
  • If you want to split the sale, First Pre-sale and after that the main one, how to be organized in the contract?

    @GLOBALTECHFUSION@GLOBALTECHFUSIONАй бұрын
  • 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

    @kevinjurden9114@kevinjurden9114 Жыл бұрын
  • Sir, thanks for your video. Is it possible to get support in real time guidance in setting up our token. ??

    @MichaelWongManTak@MichaelWongManTak Жыл бұрын
  • I love your videos mate! :) ...

    @astrofoundation@astrofoundation Жыл бұрын
    • Thanks Bela, glad they're helpful!

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
  • Awesome thanks

    @trihuynh5840@trihuynh5840 Жыл бұрын
  • hey, this is fantastic. can we add eth reflections for things like a marketing wallet/treasury? can you do a little how to on those types of things? love your content

    @SimonSpiteri-bo2ty@SimonSpiteri-bo2ty Жыл бұрын
  • 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.

    @galeraonthebeat@galeraonthebeat Жыл бұрын
  • can you include initial token pricing in the contract before deployment?

    @24PetrocoinLLC@24PetrocoinLLC3 ай бұрын
  • i just want to say thank you You are a Hero

    @katour001@katour001 Жыл бұрын
    • Thanks for the kind words!

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
  • 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? 🙏

    @vaerube6670@vaerube66709 ай бұрын
    • Same, unsure what's goin on

      @aayushchopra6080@aayushchopra60802 ай бұрын
  • Is it possible to add custom metadata to a token?

    @TimKariuki@TimKariuki Жыл бұрын
  • thanks, bro, I created one token and I sent it to your wallet 1m also... thanks again

    @autoRevolutionHubs@autoRevolutionHubs Жыл бұрын
    • Hello bhai

      @motivationalwebsite7173@motivationalwebsite7173 Жыл бұрын
    • How do i contact you?

      @elmergriffen3010@elmergriffen3010 Жыл бұрын
  • 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?

    @albechannel1@albechannel1 Жыл бұрын
    • you can using sepolia for same

      @shjndohjkaru@shjndohjkaru Жыл бұрын
    • Rinkeby has now been turned into Sepolia by the same company “alchemy” so I just went ahead and used the sepolia test network

      @advikmarini@advikmarini9 ай бұрын
  • Hello. How to do that on iPhone? Does that work? Not sure why but whenever I get on remix I get an error message.

    @spadanaco.638@spadanaco.63810 ай бұрын
  • Nice Vijeo...

    @franktimestamp@franktimestamp Жыл бұрын
  • 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.

    @officialjobsdekho5426@officialjobsdekho5426 Жыл бұрын
    • vs code

      @VVAIBHAVTIWARI@VVAIBHAVTIWARIАй бұрын
  • what will be the procedure to deploy it to main net and does it gonna cost me something ??

    @PulokPandit@PulokPandit Жыл бұрын
  • 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?

    @pantherverse@pantherverse Жыл бұрын
  • 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

    @mrcrazy3960@mrcrazy3960 Жыл бұрын
  • The correct link contains a subdirectory "blob", that was what you missed.

    @SoftWorkDotNg@SoftWorkDotNg Жыл бұрын
  • 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!

    @advikmarini@advikmarini9 ай бұрын
  • on minute 53 i received this error on 3 last test function: TypeError: Cannot read properties of undefined (reading 'address')

    @brenobertulucci134@brenobertulucci134 Жыл бұрын
  • 39:45. `block.coinbase`.. How does this field `coinbase` come from? Is it defined by (or related to) Coinbase Exchange? What is the type of `block`? Is it some `any` kind where arbitrary fields can be added by anyone?

    @sirnawaz@sirnawaz Жыл бұрын
  • for me somehow the initial balance is zero in my truffle test. I did use _mint function. Any ideas why? Thanks.

    @f_ftactics7928@f_ftactics7928 Жыл бұрын
  • it says "infinite gas" for me on creating the constructor, what did i do wrong ? thanks

    @thelegendjustice@thelegendjustice5 ай бұрын
  • Does this tutorial cover whole process from start to end in complete?

    @TopMutt@TopMutt Жыл бұрын
  • 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?

    @jims7089@jims7089 Жыл бұрын
    • 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@BlockExplorerMedia Жыл бұрын
    • @@BlockExplorerMedia What was the fatal mistake?

      @PavedSoundRecords@PavedSoundRecords Жыл бұрын
  • 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

    @prathikp4253@prathikp4253 Жыл бұрын
  • 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')

    @VUVANDUNG22@VUVANDUNG222 ай бұрын
  • 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 %.

    @HarbingerOfDank@HarbingerOfDank Жыл бұрын
  • still get solidity version error tho it matches to hardhat file doesnt compile

    @indiuma@indiuma Жыл бұрын
  • 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.

    @jaspaw.5473@jaspaw.5473 Жыл бұрын
  • Hi Rinkeby test network has been deprecated, any solutions ? Thanks

    @kirazami2282@kirazami2282 Жыл бұрын
  • 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?

    @noahcurry4510@noahcurry4510 Жыл бұрын
  • 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?

    @ObscureOdysseys@ObscureOdysseys9 ай бұрын
    • Yes, exactly. I pinned a comment to the top explaining. A lot of people have been asking this. Thanks!

      @BlockExplorerMedia@BlockExplorerMedia7 ай бұрын
  • I think you do an amazing job with your content. Do you have a class where you teach blockchain? I would pay to learn if you teach a course.

    @guillermobeitler5147@guillermobeitler51479 ай бұрын
    • Thanks, I appreciate it! I don't have any courses at the moment but I've been thinking about creating one - will let you know.

      @BlockExplorerMedia@BlockExplorerMedia7 ай бұрын
  • do you have any videos on creating a coin on different block chain network or all of the are the same?

    @hberrios23@hberrios238 ай бұрын
    • 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.

      @BlockExplorerMedia@BlockExplorerMedia7 ай бұрын
  • Hello, how do I add a picture to the token?

    @bearsbestanimals@bearsbestanimals Жыл бұрын
  • Thanks for uploading this tutorial. Amazing work. I am facing issues at 36:56 and getting this error: TypeError: Derived contract must override function "_mint". Two or more base classes define function with same name and parameter types. Could you please suggest what could be causing these issues? I don't see you have any issues.

    @digitalthoughts334@digitalthoughts334 Жыл бұрын
    • This error occurs when a contract is derived from two or more base contracts that have a function with the same name and input parameter types. In your case, it seems that you have defined the _mint function in your derived contract and also inherited it from one or more base contracts. To resolve this error, you need to override the _mint function in your derived contract to ensure that it has the same function signature as the base contract(s). This means that the function name, input parameter types, and return type must be exactly the same. Here's an example of how you can override the _mint function in your derived contract: javascript Copy code function _mint(address account, uint256 amount) public onlyOwner { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } This adds the onlyOwner modifier to restrict minting to the contract owner, but you can modify it as per your requirements. Just make sure that the function signature is the same as the base contract(s) to avoid the error.

      @drawcontent3664@drawcontent3664 Жыл бұрын
    • Hi did you find solution ? thanks

      @kirazami2282@kirazami2282 Жыл бұрын
    • ​ It happens because of multiple references to the ERC20 contract (ERC20Capped & ERC20Burnable). If are talking about the _mint function (defined in both ERC20 and ERC20Capped contracts), you should override the function in your Token contract (add override(ERC20, ERC20Capped) to the _mint() signature - the order doesn't matter) and call super._mint(). The code will use the ERC20Capped function since we are using super and it's "closer" in the inheritance chain (you can also just use ERC20Capped._mint() explicitly). Hope it helped.

      @shachar991@shachar991 Жыл бұрын
  • 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!

    @HexElement@HexElement Жыл бұрын
    • 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@BlockExplorerMedia Жыл бұрын
    • @@BlockExplorerMedia You just saved my life! Thats exactly what I was wanting to figure out. Thank you man, you got a subscriber!

      @HexElement@HexElement Жыл бұрын
    • You bet - thanks!!

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
    • ​@@HexElementcan you guys teach me i will pay.

      @franklinokafor3229@franklinokafor32299 ай бұрын
    • @@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

      @Globetrottersz1@Globetrottersz19 ай бұрын
  • 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 + ~~~

    @samrahul1993@samrahul19935 ай бұрын
  • I think I can't transfer the tokens to another address, the transaction keeps failing

    @jamesluiz3889@jamesluiz3889 Жыл бұрын
  • 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?

    @tanaytambe396@tanaytambe396 Жыл бұрын
    • Hi did you find a solution ? Thanks

      @kirazami2282@kirazami2282 Жыл бұрын
    • @@kirazami2282 not yetbro!

      @tanaytambe396@tanaytambe396 Жыл бұрын
  • Please, a tutorial to launch an ICO 🙏🙏🙏

    @ng8530@ng8530 Жыл бұрын
  • hello, how i can add a web site and a twitter account to my contract erc20 ? a specifical code lign ?

    @kruzoty929@kruzoty9293 ай бұрын
  • will you get in trouble if you don't include MIT license statement?

    @EclipseEgg@EclipseEgg3 ай бұрын
  • I am trying all on your steps, but i am stuck at the contract RTXToken is ERC20 {....sadly i cant compile with success.

    @williamchen8368@williamchen836810 ай бұрын
  • how much gas in ether did you pay for this creating of erc20? Amazing tutorial!! I really like it.

    @jiaxunhoa4274@jiaxunhoa4274 Жыл бұрын
    • 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@BlockExplorerMedia Жыл бұрын
    • @@BlockExplorerMedia how about BEP20 is it the same with Erc20 in terms of the cost of deploying to the mainnet?

      @CharlesBLim@CharlesBLim Жыл бұрын
  • Hello thank you for the video, how can we deploy to main net, can you help with the configuration?

    @user-gr7ff2kz5c@user-gr7ff2kz5c8 ай бұрын
    • I pinned a comment to the top of this video explaining how. Let me know if you have any other questions.

      @BlockExplorerMedia@BlockExplorerMedia7 ай бұрын
  • Will this work with prc-20?

    @mikelac2@mikelac2 Жыл бұрын
  • at 44.35 you dont have artifacts folder and then 44.41 artifacts is shown here how

    @SuryaVino@SuryaVino2 ай бұрын
  • 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

    @Akhbash@Akhbash Жыл бұрын
    • 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!

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
    • Please can you clarify, why do we need the mining reward? Just a little confused about the need for that part of the code.

      @beamzbysilva2928@beamzbysilva2928 Жыл бұрын
    • 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!

      @BlockExplorerMedia@BlockExplorerMedia Жыл бұрын
  • 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

    @iam1.@iam1.9 ай бұрын
  • how can ı reach full documentation for test hardhat ?

    @hiyutup8541@hiyutup8541 Жыл бұрын
KZhead