maybe @LucianMincu? sorry for ping but i dont know who to ask. the author (dorin) doesnt know either
guest8485636052 activity
guest8485636052 commented on Thank you. Just tried on devnet : https://devnet-explorer.elrond.com/tokens/VITAL-c01ad0 Action isn't allowed, while the canBurn is active and the data seems correct. An idea ?
https://docs.elrond.com/developers/esdt-tokens/#set-special-role check setSpecialRole and ESDTRoleLocalBurn
guest8485636052 commented on if it is a view function, does it have limits, considering there is no tx cost, would it result in the tx being dropped for a large vec?
if the vec is too large and execution would take more than 1 second or something like this, the result will be dropped yes
guest8485636052 commented on Hello! ? My Smart Contract includes different modules. Everything works fine with erdpy contract build. But when I use rust testing framework, I get errors if I try to use functions defined in these modules. Anyone knows how to use modules with the rust testing framework ?
Just make sure the modules are public and that you import them in your test file. Use rust_analyzer, will help you out
guest8485636052 commented on Guys sometimes when i visit elrondscan.com i get a message "You do not have permission to view this" then after a few minutes it get fixed automatically. Do you know the reason behind it?
elrondscan isn't a product of elrond so i think its not likely that someone would know
guest8485636052 commented on Thanks and how can I do with it ? Like I can integrate wallet or ? What functions I can make with it ?
i think for wallet integration you need dapp-core which uses erdjs under the hood. im not sure tho, since i have 0 experience on the frontend side
guest8485636052 commented on Its there any javascript/php SDK for elrond integration ?
there's erdjs. for php there is none
guest8485636052 commented on Will elrond make a plugin that does autocomplete for vs code?
autocomplete exists already, try rust-analyzer plugin for vscode
guest8485636052 commented on Hey guys is there an easy way to find a particular transaction without going through all the history?
take a look here https://api.elrond.com/ there's a lot of api calls that retrieve transactions with basically all the filtering you may want
guest8485636052 commented on Hi ! i try to send a nft from my own collection to my smartcontract. I test with erdpy contract call and the built-in function ESDTNFTTransfert but it doesn't works, blockchain tell me invalid receiver address. I guess it's because i don"t use my own address as receiver. How can i do th... Read more
there's a small piece of docs around it: https://docs.elrond.com/sdk-and-tools/erdjs/erdjs-cookbook/#multi-esdt--nft-transfer
guest8485636052 commented on is there a multisig solution available or in the works for maiar?
not for maiar but this is in works https://devnet-multisig.elrond.com/
guest8485636052 commented on Hey everybody! If I want to create a vector of indexes so I can iterate through it, which would be the cheapest way to do it?
Depends on the size of the vector. Cheapest might be a storage of managed vec of a vecmapper
guest8485636052 commented on hi, is that possible to send sft to sc with erdpy ? If so,how ?
Hello :) it is possible using ESDTNFTTransfer and multiESDTNFTTransfer