cc @mihaieremia
Luc548820990 activity
Luc548820990 commented on I get many timeouts on the devnet API on account endpoints and the Chrome Wallet extension too. Is it only me?
noted. ???? looking into it
Luc548820990 commented on @LucianMincu it works on devnet is it web wallet's problem on mainnet?
do you have any specific payload or transaction that you're trying to sign? maybe a short printscreen with the error?
Luc548820990 commented on Hii, is it possible to check if a contract is upgraded after deployment, and time when it is upgraded??
Hi! Sure, everything is visible on explorer. The owner of that sc should have a transaction to the SC with the method upgradeContract following the new bytecode
Luc548820990 commented on Morning guys, any idea how we can assign a name to a SC address?
cc @AndreiMarinica
Luc548820990 commented on hello guys ! I’m looking for a way to find all addresses who stacked on a validator node. I can’t find this in api.elrond.com. Do you have any guess ?
cc @bcosma do we have anything on this side available from the delegation-api ?
Luc548820990 commented on hi guys, is devnet working for you?
Hi there! Do you have specific endpoint or dapp you guys are having this problems? ???? Have just switched the network to devnet on the wallet extension and performed a simple transaction without any problem. ????
Luc548820990 commented on Hello, is it in work that we can add ABI files to the explorer like on Etherscan?
Hello. Yes, it's in the works. ????
Luc548820990 commented on So, will it be possible to access again in the next days?
Later today. ????
Luc548820990 commented on Okay. There's currently no way to add a hook that calls another SC's method when certain methods on the DSC are called, right?
I think a bit more context would help in here ????
Luc548820990 commented on This is the contract deployed for DSCs, right?
That's the one used for the legacy delegation / community pool. All other delegation SCs are using the one built in the protocol which is in GO
Luc548820990 commented on Does someone know what is happening to https://api.elrond.com/mex-pairs ?
cc @equilibriumro
Luc548820990 commented on Hey guys. Anybody know why sometimes when I use the Maiar DEX Extension on some sites, it gives an error `This page has been blocked by Chrome ERR_BLOCKED_BY_CLIENT` and I have to reload the actual page from the extension for it to work ok?
cc @andreigiura @constantintovisi
Luc548820990 commented on Hello, does Elrond plan to support multiple Async Calls per Smart Contract function soon?
cc @robertsasu @AndreiMarinica ????
Luc548820990 commented on Do you know when the APIs will be fixed?
In the next hour, everything should be back online ????
Luc548820990 commented on Hi. Is devnet having issues atm?
The chain itself works as expected. Most probably an API issue. Looking on it. ????
Luc548820990 commented on Pushing one more time on this, @LucianMincu when do you think we will have dapp-core/dapp-utils/dapp-template using erdjs 10?
cc @Stan_Sava @constantintovisi
Luc548820990 commented on That should be 0 as the EGLD value no?
but it's 100 from the token selected
Luc548820990 commented on Hello @LucianMincu Do you know if there is a plan to integrate animated NFT as profile pic in Maiar by chance?
Noted and forwarded to the team. Added to the list ?
Luc548820990 commented on Hello, I am using this ( WithdrawTransaction from Delegator ) Is there a way to know the amount of EGLD received from withdraw after this ? If I use callback here.. can I know the amount of EGLD recevied ?
Hi @samuelson01! This contract should have most of the resources you're looking for when interacting with a Rust SC & a System SC -> https://github.com/ElrondNetwork/sc-delegation-rs
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 Chain Connect is asking for my 24 words, that is not normal ?
This could be a scam! Do not enter anywhere your seed words!
Luc548820990 commented on hi everyone, do you know if there is an API to get the shard number of an address ?
https://api.elrond.com/accounts/erd195fe57d7fm5h33585sc7wl8trqhrmy85z3dg6f6mqd0724ymljxq3zjemc shard: 0,
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 Maiar Exchange use multi-sig SCs?
Hey @Skyzoxx! Yes, everything related to the operations and governance of the maiar exchange will be routed trough multi sigs. ?
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
Luc548820990 commented on Is there a way I can activate on my local testnet phase 3 SC?
Sure it is! Let me talk with the team and see what would be the best approach to provide this out of the box for everyone. Maybe just a custom branch or a general configuration update of the setup will be enough.