Update wallet connection options

This commit is contained in:
Serkan Reis
2023-12-08 09:41:13 +03:00
parent b40eacf5f9
commit 16e6d45c18
2 changed files with 5 additions and 2 deletions
+4 -2
View File
@@ -19,10 +19,12 @@ export const WalletProvider = ({ children }: { children: ReactNode }) => {
endpointOptions={{
endpoints: {
stargaze: {
rpc: ['https://rpc.stargaze-apis.com'],
rpc: ['https://rpc.stargaze-apis.com/'],
rest: ['https://rest.stargaze-apis.com/'],
},
stargazetestnet: {
rpc: ['https://rpc.elgafar-1.stargaze-apis.com'],
rpc: ['https://rpc.elgafar-1.stargaze-apis.com/'],
rest: ['https://rest.elgafar-1.stargaze-apis.com/'],
},
},
}}