There seems to be a weird race condition on the `/account-assets` endpoint when handling two different requests for the same chainId. Reproduction: https://codesandbox.io/s/ethereum-api-race-condition-repro-f24x4t?file=/src/index.js
289 lines
7.6 KiB
TypeScript
289 lines
7.6 KiB
TypeScript
import Client, { CLIENT_EVENTS } from "@walletconnect/client";
|
|
import { PairingTypes, SessionTypes } from "@walletconnect/types";
|
|
import QRCodeModal from "@walletconnect/legacy-modal";
|
|
import {
|
|
createContext,
|
|
ReactNode,
|
|
useCallback,
|
|
useContext,
|
|
useEffect,
|
|
useMemo,
|
|
useState,
|
|
} from "react";
|
|
import {
|
|
DEFAULT_APP_METADATA,
|
|
DEFAULT_COSMOS_METHODS,
|
|
DEFAULT_EIP155_METHODS,
|
|
DEFAULT_LOGGER,
|
|
DEFAULT_PROJECT_ID,
|
|
DEFAULT_RELAY_URL,
|
|
} from "../constants";
|
|
import { AccountBalances, apiGetAccountBalance } from "../helpers";
|
|
import { ERROR, getAppMetadata } from "@walletconnect/utils";
|
|
|
|
/**
|
|
* Types
|
|
*/
|
|
interface IContext {
|
|
client: Client | undefined;
|
|
session: SessionTypes.Created | undefined;
|
|
connect: (pairing?: { topic: string }) => Promise<void>;
|
|
disconnect: () => Promise<void>;
|
|
isInitializing: boolean;
|
|
chains: string[];
|
|
pairings: string[];
|
|
accounts: string[];
|
|
balances: AccountBalances;
|
|
isFetchingBalances: boolean;
|
|
setChains: any;
|
|
}
|
|
|
|
/**
|
|
* Context
|
|
*/
|
|
export const ClientContext = createContext<IContext>({} as IContext);
|
|
|
|
/**
|
|
* Provider
|
|
*/
|
|
export function ClientContextProvider({ children }: { children: ReactNode | ReactNode[] }) {
|
|
const [client, setClient] = useState<Client>();
|
|
const [pairings, setPairings] = useState<string[]>([]);
|
|
const [session, setSession] = useState<SessionTypes.Created>();
|
|
|
|
const [isFetchingBalances, setIsFetchingBalances] = useState(false);
|
|
const [isInitializing, setIsInitializing] = useState(false);
|
|
|
|
const [balances, setBalances] = useState<AccountBalances>({});
|
|
const [accounts, setAccounts] = useState<string[]>([]);
|
|
const [chains, setChains] = useState<string[]>([]);
|
|
|
|
const resetApp = () => {
|
|
setPairings([]);
|
|
setSession(undefined);
|
|
setBalances({});
|
|
setAccounts([]);
|
|
setChains([]);
|
|
};
|
|
|
|
const getAccountBalances = async (_accounts: string[]) => {
|
|
setIsFetchingBalances(true);
|
|
try {
|
|
const arr = await Promise.all(
|
|
_accounts.map(async account => {
|
|
const [namespace, reference, address] = account.split(":");
|
|
const chainId = `${namespace}:${reference}`;
|
|
const assets = await apiGetAccountBalance(address, chainId);
|
|
return { account, assets: [assets] };
|
|
}),
|
|
);
|
|
|
|
const balances: AccountBalances = {};
|
|
arr.forEach(({ account, assets }) => {
|
|
balances[account] = assets;
|
|
});
|
|
setBalances(balances);
|
|
} catch (e) {
|
|
console.error(e);
|
|
} finally {
|
|
setIsFetchingBalances(false);
|
|
}
|
|
};
|
|
|
|
const getSupportedNamespaces = useCallback(() => {
|
|
const supportedNamespaces: string[] = [];
|
|
chains.forEach(chainId => {
|
|
const [namespace] = chainId.split(":");
|
|
if (!supportedNamespaces.includes(namespace)) {
|
|
supportedNamespaces.push(namespace);
|
|
}
|
|
});
|
|
|
|
return supportedNamespaces;
|
|
}, [chains]);
|
|
|
|
const getSupportedMethods = (namespaces: string[]) => {
|
|
const supportedMethods: string[] = namespaces
|
|
.map(namespace => {
|
|
switch (namespace) {
|
|
case "eip155":
|
|
return DEFAULT_EIP155_METHODS;
|
|
case "cosmos":
|
|
return DEFAULT_COSMOS_METHODS;
|
|
default:
|
|
throw new Error(`No default methods for namespace: ${namespace}`);
|
|
}
|
|
})
|
|
.flat();
|
|
|
|
return supportedMethods;
|
|
};
|
|
|
|
const onSessionConnected = useCallback(async (incomingSession: SessionTypes.Settled) => {
|
|
setSession(incomingSession);
|
|
setChains(incomingSession.permissions.blockchain.chains);
|
|
setAccounts(incomingSession.state.accounts);
|
|
await getAccountBalances(incomingSession.state.accounts);
|
|
}, []);
|
|
|
|
const connect = useCallback(
|
|
async (pairing?: { topic: string }) => {
|
|
if (typeof client === "undefined") {
|
|
throw new Error("WalletConnect is not initialized");
|
|
}
|
|
console.log("connect", pairing);
|
|
try {
|
|
const supportedNamespaces = getSupportedNamespaces();
|
|
const methods = getSupportedMethods(supportedNamespaces);
|
|
const session = await client.connect({
|
|
metadata: getAppMetadata() || DEFAULT_APP_METADATA,
|
|
pairing,
|
|
permissions: {
|
|
blockchain: {
|
|
chains,
|
|
},
|
|
jsonrpc: {
|
|
methods,
|
|
},
|
|
},
|
|
});
|
|
|
|
onSessionConnected(session);
|
|
} catch (e) {
|
|
console.error(e);
|
|
// ignore rejection
|
|
}
|
|
|
|
// close modal in case it was open
|
|
QRCodeModal.close();
|
|
},
|
|
[chains, client, onSessionConnected, getSupportedNamespaces],
|
|
);
|
|
|
|
const disconnect = useCallback(async () => {
|
|
if (typeof client === "undefined") {
|
|
throw new Error("WalletConnect is not initialized");
|
|
}
|
|
if (typeof session === "undefined") {
|
|
throw new Error("Session is not connected");
|
|
}
|
|
await client.disconnect({
|
|
topic: session.topic,
|
|
reason: ERROR.USER_DISCONNECTED.format(),
|
|
});
|
|
}, [client, session]);
|
|
|
|
const _subscribeToEvents = useCallback(async (_client: Client) => {
|
|
if (typeof _client === "undefined") {
|
|
throw new Error("WalletConnect is not initialized");
|
|
}
|
|
|
|
_client.on(CLIENT_EVENTS.pairing.proposal, async (proposal: PairingTypes.Proposal) => {
|
|
const { uri } = proposal.signal.params;
|
|
console.log("EVENT", "QR Code Modal open");
|
|
QRCodeModal.open(uri, () => {
|
|
console.log("EVENT", "QR Code Modal closed");
|
|
});
|
|
});
|
|
|
|
_client.on(CLIENT_EVENTS.pairing.created, async () => {
|
|
setPairings(_client.pairing.topics);
|
|
});
|
|
|
|
_client.on(CLIENT_EVENTS.session.deleted, () => {
|
|
console.log("EVENT", "session_deleted");
|
|
resetApp();
|
|
});
|
|
}, []);
|
|
|
|
const _checkPersistedState = useCallback(
|
|
async (_client: Client) => {
|
|
if (typeof _client === "undefined") {
|
|
throw new Error("WalletConnect is not initialized");
|
|
}
|
|
// populates existing pairings to state
|
|
setPairings(_client.pairing.topics);
|
|
if (typeof session !== "undefined") return;
|
|
// populates existing session to state (assume only the top one)
|
|
if (_client.session.topics.length) {
|
|
const _session = await _client.session.get(_client.session.topics[0]);
|
|
onSessionConnected(_session);
|
|
}
|
|
},
|
|
[session, onSessionConnected],
|
|
);
|
|
|
|
const createClient = useCallback(async () => {
|
|
try {
|
|
setIsInitializing(true);
|
|
|
|
const _client = await Client.init({
|
|
logger: DEFAULT_LOGGER,
|
|
relayUrl: DEFAULT_RELAY_URL,
|
|
projectId: DEFAULT_PROJECT_ID,
|
|
});
|
|
|
|
setClient(_client);
|
|
await _subscribeToEvents(_client);
|
|
await _checkPersistedState(_client);
|
|
} catch (err) {
|
|
throw err;
|
|
} finally {
|
|
setIsInitializing(false);
|
|
}
|
|
}, [_checkPersistedState, _subscribeToEvents]);
|
|
|
|
useEffect(() => {
|
|
if (!client) {
|
|
createClient();
|
|
}
|
|
}, [client, createClient]);
|
|
|
|
const value = useMemo(
|
|
() => ({
|
|
pairings,
|
|
isInitializing,
|
|
balances,
|
|
isFetchingBalances,
|
|
accounts,
|
|
chains,
|
|
client,
|
|
session,
|
|
connect,
|
|
disconnect,
|
|
setChains,
|
|
}),
|
|
[
|
|
pairings,
|
|
isInitializing,
|
|
balances,
|
|
isFetchingBalances,
|
|
accounts,
|
|
chains,
|
|
client,
|
|
session,
|
|
connect,
|
|
disconnect,
|
|
setChains,
|
|
],
|
|
);
|
|
|
|
return (
|
|
<ClientContext.Provider
|
|
value={{
|
|
...value,
|
|
}}
|
|
>
|
|
{children}
|
|
</ClientContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useWalletConnectClient() {
|
|
const context = useContext(ClientContext);
|
|
if (context === undefined) {
|
|
throw new Error("useWalletConnectClient must be used within a ClientContextProvider");
|
|
}
|
|
return context;
|
|
}
|