Hello,

Sign up to join our community!

Welcome Back,

Please login to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Luc548820990 activity

Luc548820990 commented on Hello everyone. I'm "playing" with gateway API and have a question. I heard, that Elrond doesn't save blocks forever (as bitcoin, eth, etc...) in the chain. Can I be sure, that my block with the transaction will be always in chain + accessible by its nonce/hash (and transactions too)? Are there any ... Read more

Hi there @T_trojan! All transactions that have been included into a block which have been finalized into one of the shards will always be available inside that shard's state / history. There are few entities that participate into the elrond network: 1. Validator nodes 2. Observer nodes 1. The validator nodes are required to keep only the last few epochs in order to provide data availability for the new validators coming and making sure that new blocks are being produced. 2. Observers can be of two types: 2.1 Live data - Where only the current state in synced including the transactions from the current epoch and all upfront ones (especially used for VM Queries or so called SC View functions) 2.2. Full history- Where the state will be synced and maintained from genesis up to the current block height, therefore making the entire chain history available for everyone on their own setup.

Luc548820990 commented on @LucianMincu @SeverMM …other core devs ? I’m looking to mint an ESDT token on devnet, and just wondering how (excepting the regular mint, burn, freeze..etc attributes) can I “attach” an icon and some additional info (site, description, social links etc) to it. There is any public repo (ex: ... Read more

Hey @cyparu! Take a look at the following repo with the examples provided in there. https://github.com/ElrondNetwork/assets The upcoming days will have everything in place for ESDT tokens coming together on explorer and wallet as well. Please give me a kind reminder the upcoming days ?

Luc548820990 commented on Does anyone know if the result of API request getTotalCumulatedRewardsForUser changes to 0 immediately when that address send a withdraw transaction? Or will it only change to 0 at the end of that epoch?

Once the transaction is executed at the destination (SC level) and the state change takes place, in the same moment the view function from the contract should represent the updated state / values (referring here to VM-Query direct to contract). One point here is if there is an intermediate API that has caching logic in it, that's where the value updates can get delayed