ref-finance/ref-sdk

ftGetTokensMetadata didn't work as expected

Closed this issue · 8 comments

In the documentation, it says we can pull metadata of all available tokens with this method but i couldn't find a way to do this. I tried to query with an empty array it returns-out an empty objects, I tried to fill-out the array with contract address it returns error below.

TypeError: Cannot read properties of undefined (reading 'ref.fakes.testnet')

Hi @matricore ,
ftGetTokensMetadata(["ref.fakes.testnet", "wrap.testnet"], {}).then((res) => { console.log({ res, }); });
Please use it in this way, sorry for that the document is not updated in time.

Hi @max-mainnet ,
Yes i solved that in the same way while trying, thank you.
So, how can i get all available tokens? Because documentation said that You can use 'ftGetTokensMetadata' function to get all available tokens, and list them in the token selector to allow users to select their trading pair
I think i must filled-out the array manually :(

the ftGetTokensMetadata function is to get all metadata by input array; I think you should call getGlobalWhitelist function to get all ref whitelist token ids and the input these ids to ftGetTokensMetadata to get those metadata. Does it help ?

yes it works like a charm. I think it should be added to the documentation. i can help you dealing with this

What if I set the array as an option, as well as second parameter, then set global whitelist as the default array if not token list input to call ftGetTokensMetadata ?

Then no need to modify the document and make the function more powerful ?

What if I set the array as an option, as well as second parameter, then set global whitelist as the default array if not token list input to call ftGetTokensMetadata ?

great idea. if you do that nobody needs documentation update

#14
ftGetTokensMetadata function updated