-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add torii tokens functions to dojo sdk #339
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -156,5 +156,30 @@ export async function init<T extends SchemaType>( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
throw error; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param {(string)[]} contract_addresses | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @returns {Promise<Tokens>} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getTokens: async ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
contract_addresses: string[] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): Promise<torii.Tokens> => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return await client.getTokens(contract_addresses); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param {(string)[]} account_addresses | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param {(string)[]} contract_addresses | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @returns {Promise<TokenBalances>} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getTokenBalances: async ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
account_addresses: string[], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
contract_addresses: string[] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): Promise<torii.TokenBalances> => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return await client.getTokenBalances( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
account_addresses, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
contract_addresses | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+170
to
+183
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Enhance documentation and error handling for Similar to getTokens, this implementation needs improvements in documentation and error handling:
Consider updating the implementation like this: /**
+ * Retrieves token balances for specified accounts and contracts.
* @param {string[]} account_addresses - Array of account addresses to fetch balances for
* @param {string[]} contract_addresses - Array of contract addresses to fetch balances from
+ * @returns {Promise<torii.TokenBalances>} Promise resolving to token balances for the specified accounts and contracts
+ * @throws {Error} If the balance fetch fails
*/
getTokenBalances: async (
account_addresses: string[],
contract_addresses: string[]
): Promise<torii.TokenBalances> => {
+ if (!account_addresses?.length || !contract_addresses?.length) {
+ throw new Error("Both account_addresses and contract_addresses arrays must not be empty");
+ }
+ try {
return await client.getTokenBalances(
account_addresses,
contract_addresses
);
+ } catch (error) {
+ console.error("Failed to fetch token balances:", error);
+ throw error;
+ }
}, 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Enhance documentation and error handling for
getTokens
The implementation looks good but could benefit from some improvements:
Consider updating the implementation like this:
📝 Committable suggestion