Skip to content

Commit 6fa7b91

Browse files
authored
fix: return shibarium spaces when fetching spaces by controller (#1013)
1 parent fac1f54 commit 6fa7b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graphql/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ async function getControllerDomains(address: string): Promise<string[]> {
535535
body: JSON.stringify({
536536
method: 'lookup_domains',
537537
params: address,
538-
network: network === 'testnet' ? '11155111' : '1'
538+
network: network === 'testnet' ? ['11155111', '157'] : ['1', '109']
539539
})
540540
});
541541
const { result, error } = (await response.json()) as JsonRpcResponse;

0 commit comments

Comments
 (0)