Skip to content

Commit

Permalink
feat: add support for chains
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Nov 26, 2024
1 parent ba9d132 commit 6e47a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/nft.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const getReputationScore = async (tokenId: string, address: string) => {

async function getProfiles(address: string) {
let profiles: Array<any> = [];
const supportedChainIds = [11155111];
const supportedChainIds = [84532, 42161];
for (let i = 0; i < supportedChainIds.length; i++) {
const chainProfiles = await ociService.getProfiles(address, supportedChainIds[i]);
profiles = profiles.concat(chainProfiles);
Expand Down

0 comments on commit 6e47a8e

Please sign in to comment.