Display DNS deployment URLs in overview section #21
@ -538,7 +538,9 @@ const Configure = () => {
|
|||||||
<Button
|
<Button
|
||||||
{...buttonSize}
|
{...buttonSize}
|
||||||
type="submit"
|
type="submit"
|
||||||
disabled={isLoading || isPaymentLoading}
|
disabled={
|
||||||
|
isLoading || isPaymentLoading || !selectedAccount
|
||||||
|
}
|
||||||
rightIcon={
|
rightIcon={
|
||||||
isLoading || isPaymentLoading ? (
|
isLoading || isPaymentLoading ? (
|
||||||
<LoadingIcon className="animate-spin" />
|
<LoadingIcon className="animate-spin" />
|
||||||
|
@ -10,7 +10,6 @@ import {
|
|||||||
import SignClient from '@walletconnect/sign-client';
|
import SignClient from '@walletconnect/sign-client';
|
||||||
import { getSdkError } from '@walletconnect/utils';
|
import { getSdkError } from '@walletconnect/utils';
|
||||||
import { SessionTypes } from '@walletconnect/types';
|
import { SessionTypes } from '@walletconnect/types';
|
||||||
import { StargateClient } from '@cosmjs/stargate';
|
|
||||||
|
|
||||||
import { walletConnectModal } from '../utils/web3modal';
|
import { walletConnectModal } from '../utils/web3modal';
|
||||||
import {
|
import {
|
||||||
@ -46,10 +45,6 @@ export const WalletConnectClientProvider = ({
|
|||||||
|
|
||||||
const isSignClientInitializing = useRef<boolean>(false);
|
const isSignClientInitializing = useRef<boolean>(false);
|
||||||
|
|
||||||
const createCosmosClient = useCallback(async (endpoint: string) => {
|
|
||||||
return await StargateClient.connect(endpoint);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const onSessionConnect = useCallback(async (session: SessionTypes.Struct) => {
|
const onSessionConnect = useCallback(async (session: SessionTypes.Struct) => {
|
||||||
setSession(session);
|
setSession(session);
|
||||||
}, []);
|
}, []);
|
||||||
@ -166,6 +161,11 @@ export const WalletConnectClientProvider = ({
|
|||||||
if (!session) {
|
if (!session) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!session.namespaces['cosmos']) {
|
||||||
|
console.log('Accounts for cosmos namespace not found');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const cosmosAddresses = session.namespaces['cosmos'].accounts;
|
const cosmosAddresses = session.namespaces['cosmos'].accounts;
|
||||||
|
|
||||||
const cosmosAccounts = cosmosAddresses.map((address) => ({
|
const cosmosAccounts = cosmosAddresses.map((address) => ({
|
||||||
@ -178,7 +178,7 @@ export const WalletConnectClientProvider = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
populateAccounts();
|
populateAccounts();
|
||||||
}, [session, createCosmosClient]);
|
}, [session]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!signClient) {
|
if (!signClient) {
|
||||||
|
Loading…
Reference in New Issue
Block a user