
Subscribe to KozukiOden

Subscribe to KozukiOden
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers
If you have interacted with a smart contract on Ethereum Mainnet, you have probably heard of gas or had to pay gas for your transaction. Gas is typically measured in gwei. Demand for block space on Ethereum Mainnet currently outpaces its supply, so the richest users tend to pay a premium to put their transactions through first. Many believe this will likely be an end-state for many of the monolithic blockchains existing today that claim to solve scaling. Block space will continue to be a premium and as more users are onboarded, the richest users will outbid others for block space.
If you’re like me and counting your coins, for low priority transactions, you can edit how much gas you’re willing to pay for the transaction through Metamask. This sounds nice if you could keep sending limit gwei transactions where the sequence the transaction was submitted does not affect the execution order; you would never have to pay high gas fees again. However, because of something called a transaction nonce, this is not possible.
A nonce is what the Ethereum Virtual Machine uses to keep track of the number of transactions an address has sent, the virtual machine does not let a pending transaction with a higher nonce execute before one with a lower nonce e.g. transaction with nonce 2 will not execute before a transaction with nonce 1.
If you have interacted with a smart contract on Ethereum Mainnet, you have probably heard of gas or had to pay gas for your transaction. Gas is typically measured in gwei. Demand for block space on Ethereum Mainnet currently outpaces its supply, so the richest users tend to pay a premium to put their transactions through first. Many believe this will likely be an end-state for many of the monolithic blockchains existing today that claim to solve scaling. Block space will continue to be a premium and as more users are onboarded, the richest users will outbid others for block space.
If you’re like me and counting your coins, for low priority transactions, you can edit how much gas you’re willing to pay for the transaction through Metamask. This sounds nice if you could keep sending limit gwei transactions where the sequence the transaction was submitted does not affect the execution order; you would never have to pay high gas fees again. However, because of something called a transaction nonce, this is not possible.
A nonce is what the Ethereum Virtual Machine uses to keep track of the number of transactions an address has sent, the virtual machine does not let a pending transaction with a higher nonce execute before one with a lower nonce e.g. transaction with nonce 2 will not execute before a transaction with nonce 1.
How to create a token URI
Creating an NFT using the ERC721 standard means that the token created also needs a token URI Things you’ll need. This list is not extensive and will depend on how much metadata you want your token to haveThe image fileThe image nameThe image descriptionAn IPFS path for the image e.g. ipfs://QmVDae8m3X6HZf9v2Jnyqe53Xpj64vEvQDUci1NpX1KrcsThe first thing you’ll need to do is upload the image to an IPFS node. You can create a pinata account to do this. Once the image is uploaded and pinned on Pi...
How to 'backup' your NFT
While a blockchain can cryptographically prove which address a token belongs to, if this token represents a digital image then it is likely the file displayed is stored on a server that may not have/keep having the data availability of a mature, socially distributed blockchain.Punk 8694 File URLTo prevent losing this image due to unforeseen reasons the simplest way would just be to right-click + save to your computer. Another way would be to also setup an IPFS node and pin the images. To do t...
How to create a token URI
Creating an NFT using the ERC721 standard means that the token created also needs a token URI Things you’ll need. This list is not extensive and will depend on how much metadata you want your token to haveThe image fileThe image nameThe image descriptionAn IPFS path for the image e.g. ipfs://QmVDae8m3X6HZf9v2Jnyqe53Xpj64vEvQDUci1NpX1KrcsThe first thing you’ll need to do is upload the image to an IPFS node. You can create a pinata account to do this. Once the image is uploaded and pinned on Pi...
How to 'backup' your NFT
While a blockchain can cryptographically prove which address a token belongs to, if this token represents a digital image then it is likely the file displayed is stored on a server that may not have/keep having the data availability of a mature, socially distributed blockchain.Punk 8694 File URLTo prevent losing this image due to unforeseen reasons the simplest way would just be to right-click + save to your computer. Another way would be to also setup an IPFS node and pin the images. To do t...
No activity yet