1 Run4912515339c/ElrondDevelopers 2years ago Could you point me to info on your “tokenidentifier will change between nets” that may be a problem for me???
1 Run4912515339c/ElrondDevelopers 2years ago Messing around just to see what happens. Tried sending 0.0000009 tokens of a token with 6 decimals and it fails (negative number). This has something to do with BigNumber and max value set when issued, so it tries to wrap around and returns a negative number?
1 Run4912515339c/ElrondDevelopers 2years ago devnet webwallet shows 4 decimals even for an esdt that has 6 decimals. Can that be changed or does it just round to 4 decimals such that if i had a token with quantity 0.00004 it would show as 0.0000 and if there were 0.00005 it would show as 0.0001?
1 Run4912515339c/ElrondDevelopers 2years ago thanks Martin so I can either use .identifier.map or .foreach?
1 Run4912515339c/ElrondDevelopers 2years ago Is the 6 character random string appended to token ticker limited to [a-z0-9] or can uppercase be assigned?
1 Run4912515339c/ElrondDevelopers 2years ago It works now, but my gas calculation to send two separate tokens was 2,269,000 but it only consumed 669,000 (Devnet). Is that normal? Can the gas for this type of transfer vary that much?
1 Run4912515339c/ElrondDevelopers 2years ago Trying MultiESDTNFTTransferPayloadBuilder from cookbook. Sending to a normal devnet wallet and i get error invalid receiver address?
1 Run4912515339c/ElrondDevelopers 2years ago well, I can see it in the explorer if I know the hash (sender). But, I plan to switch from egld to usdc for payment flow and if the receiver doesn't get the transaction receipt it makes it hard for accounting (tax compliance). Who can I send a feature request into?
1 Run4912515339c/ElrondDevelopers 2years ago Martin, it worked. Question: when i send an esdt from one address directly to another address, the elrond web wallet shows the transaction history in both the sender and receivers wallet. But when I send it through my smart contract, the esdt are transferred correctly, but the receiver never gets ... Read more
1 Run4912515339c/ElrondDevelopers 2years ago Got the struct!! Stupid question, how do I display BigNumber { s: 1, e: 1, c: [ 80 ] } as 80?
1 Run4912515339c/ElrondDevelopers 2years ago can you point me to an example that you know of (elrond-wasm-rs github)?
1 Run4912515339c/ElrondDevelopers 2years ago My original storage test passed for "str:clientToken|address:client_1_address": "str:token:client_1_token" is that because ManagedAddress is a known length so doesn't require Nested Encoding whereas the TokenIdentifier can be any length based on its name?