1 guest7928964493c/ElrondDevelopers 2years ago Ok thank you for your answer! Where can I stay up to date to know when API is ready?
1 guest7928964493c/ElrondDevelopers 2years ago Dorin is it possible that the ESDT system smart contract Proxy does not have the method to call "controlChanges" to upgrade the token or did I miss it?
1 guest7928964493c/ElrondDevelopers 2years ago Hello everyone, are there server specification suggestions for a server to self-host the Elrond API repository?
1 guest7928964493c/ElrondDevelopers 2years ago I did miss the bignumber.js in may package.json, but i still get the same error. I will experiment more and see if I can solve it. Was the json-bigint package introduced recently, or has it been there for a longer time?
1 guest7928964493c/ElrondDevelopers 2years ago Thank you for your answer :)) Do you know if I can run out of Gas when I reduce the balance of many customers? Should I store the balances of the user in MapMapper?
1 guest7928964493c/ElrondDevelopers 2years ago Thank you so much for the detail Information and point me to the Code!? Do you think it will be helpful if we add it to ErdJs by native?
1 guest7928964493c/ElrondDevelopers 2years ago Thank you for your answer?I experiment with the Governance Module where the arguments can be number and string in JS. It is this Part of the Action struct: "pub arguments: ManagedVec>" I would like to avoid the Explicit way. Is that possible? Could the ErdJs detect that it is a ... Read more
1 guest7928964493c/ElrondDevelopers 2years ago Is it possible to set a description for a function argument in the Abi file?
1 guest7928964493c/ElrondDevelopers 2years ago I am still debugging it. Can I access the contract Version from Cargo inside the smart contract so I can see if I use the latest version?
1 guest7928964493c/ElrondDevelopers 2years ago Hello :) Is there a API where I can fetch the prices of all tokens?
1 guest7928964493c/ElrondDevelopers 2years ago Do you have any idea what could cause the "push_arg_managed_buffer" appended arguments to get ignored?
1 guest7928964493c/ElrondDevelopers 2years ago Hi! I have been trying for long without luck to build a ContractCall like in the governance module and append arguments to the resulted call. I use the method "push_arg_managed_buffer" like in the governance module: https://github.com/ElrondNetwork/elrond-wasm-rs/blob/12ded2e9159b2f0eb52ab312aa86a12... Read more
1 guest7928964493c/ElrondDevelopers 2years ago I can not use ABI unfortunately because I am trying to use it in Wordpress PHP. It would work there with the nested array. I would like to construct a class from the returned data, but I do not know which is the last argument of that Vec. The only solution I see is to also send the arguments amount ... Read more
1 guest7928964493c/ElrondDevelopers 2years ago Thank you Martin. This worked and the values are now separate. But It spread the array into all the results. It became this: [address, argument, argument, argument, number] instead of this: [address, [argument, argument, argument], number] Do you know, is there a way to make it into the second form... Read more
1 guest7928964493c/ElrondDevelopers 2years ago This is good news? Is it right to replace the ManagedVec with MultiValueManagedVec in this case?
1 guest7928964493c/ElrondDevelopers 2years ago Hello! Do you know how I can add a transaction note to ESDTTransfer? Is it the last argument?