2022-02-04 19:48:43 +00:00
|
|
|
import { BigNumber } from "ethers";
|
|
|
|
import { createContext, ReactNode, useContext, useEffect, useState } from "react";
|
|
|
|
import * as encoding from "@walletconnect/encoding";
|
2022-02-09 10:06:48 +00:00
|
|
|
import { formatDirectSignDoc, stringifySignDocValues } from "cosmos-wallet";
|
2022-02-04 19:48:43 +00:00
|
|
|
|
|
|
|
import {
|
|
|
|
ChainNamespaces,
|
|
|
|
eip712,
|
|
|
|
formatTestTransaction,
|
|
|
|
getAllChainNamespaces,
|
|
|
|
hashPersonalMessage,
|
|
|
|
hashTypedDataMessage,
|
|
|
|
verifySignature,
|
|
|
|
} from "../helpers";
|
|
|
|
import { useWalletConnectClient } from "./ClientContext";
|
|
|
|
import { apiGetChainNamespace, ChainsMap } from "caip-api";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Types
|
|
|
|
*/
|
|
|
|
interface IFormattedRpcResponse {
|
|
|
|
method: string;
|
|
|
|
address: string;
|
|
|
|
valid: boolean;
|
|
|
|
result: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IRpcResult {
|
|
|
|
method: string;
|
|
|
|
valid: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IContext {
|
|
|
|
ping: () => Promise<void>;
|
2022-02-09 10:06:48 +00:00
|
|
|
ethereumRpc: {
|
|
|
|
testSendTransaction: (chainId: string) => Promise<void>;
|
|
|
|
testSignPersonalMessage: (chainId: string) => Promise<void>;
|
|
|
|
testSignTypedData: (chainId: string) => Promise<void>;
|
|
|
|
};
|
|
|
|
cosmosRpc: {
|
|
|
|
testSignDirect: (chainId: string) => Promise<void>;
|
|
|
|
testSignAmino: (chainId: string) => Promise<void>;
|
|
|
|
};
|
2022-02-04 19:48:43 +00:00
|
|
|
chainData: ChainNamespaces;
|
|
|
|
rpcResult?: IRpcResult | null;
|
|
|
|
isRpcRequestPending: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Context
|
|
|
|
*/
|
|
|
|
export const JsonRpcContext = createContext<IContext>({} as IContext);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provider
|
|
|
|
*/
|
|
|
|
export function JsonRpcContextProvider({ children }: { children: ReactNode | ReactNode[] }) {
|
|
|
|
const [pending, setPending] = useState(false);
|
|
|
|
const [result, setResult] = useState<IRpcResult | null>();
|
|
|
|
const [chainData, setChainData] = useState<ChainNamespaces>({});
|
|
|
|
|
|
|
|
const { client, session, accounts, balances } = useWalletConnectClient();
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
loadChainData();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const loadChainData = async () => {
|
|
|
|
const namespaces = getAllChainNamespaces();
|
|
|
|
const chainData: ChainNamespaces = {};
|
|
|
|
await Promise.all(
|
|
|
|
namespaces.map(async namespace => {
|
|
|
|
let chains: ChainsMap | undefined;
|
|
|
|
try {
|
|
|
|
chains = await apiGetChainNamespace(namespace);
|
|
|
|
} catch (e) {
|
|
|
|
// ignore error
|
|
|
|
}
|
|
|
|
if (typeof chains !== "undefined") {
|
|
|
|
chainData[namespace] = chains;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
setChainData(chainData);
|
|
|
|
};
|
|
|
|
|
2022-02-10 13:34:32 +00:00
|
|
|
const getAddressByChainId = (chainId: string) => {
|
|
|
|
const account = accounts.find(account => account.startsWith(chainId));
|
|
|
|
if (account === undefined) throw new Error(`Account for chainId ${chainId} not found.`);
|
|
|
|
const address = account.split(":").pop();
|
|
|
|
if (address === undefined) throw new Error(`Address for account ${account} is invalid`);
|
|
|
|
|
|
|
|
return address;
|
|
|
|
};
|
|
|
|
|
2022-02-04 19:48:43 +00:00
|
|
|
const _createJsonRpcRequestHandler =
|
|
|
|
(rpcRequest: (...requestArgs: [any]) => Promise<IFormattedRpcResponse>) =>
|
|
|
|
async (chainId: string) => {
|
|
|
|
if (typeof client === "undefined") {
|
|
|
|
throw new Error("WalletConnect is not initialized");
|
|
|
|
}
|
|
|
|
if (typeof session === "undefined") {
|
|
|
|
throw new Error("Session is not connected");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
setPending(true);
|
|
|
|
const result = await rpcRequest(chainId);
|
|
|
|
setResult(result);
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
setResult(null);
|
|
|
|
} finally {
|
|
|
|
setPending(false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const ping = async () => {
|
|
|
|
if (typeof client === "undefined") {
|
|
|
|
throw new Error("WalletConnect is not initialized");
|
|
|
|
}
|
|
|
|
if (typeof session === "undefined") {
|
|
|
|
throw new Error("Session is not connected");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
setPending(true);
|
|
|
|
|
|
|
|
let valid = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
await client.session.ping(session.topic);
|
|
|
|
valid = true;
|
|
|
|
} catch (e) {
|
|
|
|
valid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// display result
|
|
|
|
setResult({
|
|
|
|
method: "ping",
|
|
|
|
valid,
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
setResult(null);
|
|
|
|
} finally {
|
|
|
|
setPending(false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// -------- ETHEREUM/EIP155 RPC METHODS --------
|
|
|
|
|
|
|
|
const ethereumRpc = {
|
|
|
|
testSendTransaction: _createJsonRpcRequestHandler(async (chainId: string) => {
|
|
|
|
// get ethereum address
|
|
|
|
const account = accounts.find(account => account.startsWith(chainId));
|
|
|
|
if (account === undefined) throw new Error("Account is not found");
|
|
|
|
const address = account.split(":").pop();
|
|
|
|
if (address === undefined) throw new Error("Address is invalid");
|
|
|
|
|
|
|
|
const tx = await formatTestTransaction(account);
|
|
|
|
|
|
|
|
const balance = BigNumber.from(balances[account][0].balance || "0");
|
|
|
|
if (balance.lt(BigNumber.from(tx.gasPrice).mul(tx.gasLimit))) {
|
|
|
|
return {
|
|
|
|
method: "eth_sendTransaction",
|
|
|
|
address,
|
|
|
|
valid: false,
|
|
|
|
result: "Insufficient funds for intrinsic transaction cost",
|
|
|
|
};
|
|
|
|
}
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
const result: string = await client!.request({
|
|
|
|
topic: session!.topic,
|
|
|
|
chainId,
|
|
|
|
request: {
|
|
|
|
method: "eth_sendTransaction",
|
|
|
|
params: [tx],
|
|
|
|
},
|
|
|
|
});
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// format displayed result
|
2022-02-04 19:48:43 +00:00
|
|
|
return {
|
|
|
|
method: "eth_sendTransaction",
|
|
|
|
address,
|
2022-02-09 10:06:48 +00:00
|
|
|
valid: true,
|
|
|
|
result,
|
2022-02-04 19:48:43 +00:00
|
|
|
};
|
2022-02-09 10:06:48 +00:00
|
|
|
}),
|
|
|
|
testSignPersonalMessage: _createJsonRpcRequestHandler(async (chainId: string) => {
|
|
|
|
// test message
|
|
|
|
const message = `My email is john@doe.com - ${Date.now()}`;
|
|
|
|
|
|
|
|
// encode message (hex)
|
|
|
|
const hexMsg = encoding.utf8ToHex(message, true);
|
|
|
|
|
2022-02-10 13:34:32 +00:00
|
|
|
const address = getAddressByChainId(chainId);
|
2022-02-09 10:06:48 +00:00
|
|
|
|
|
|
|
// personal_sign params
|
|
|
|
const params = [hexMsg, address];
|
|
|
|
|
|
|
|
// send message
|
|
|
|
const result: string = await client!.request({
|
|
|
|
topic: session!.topic,
|
|
|
|
chainId,
|
|
|
|
request: {
|
|
|
|
method: "personal_sign",
|
|
|
|
params,
|
|
|
|
},
|
|
|
|
});
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// split chainId
|
|
|
|
const [namespace, reference] = chainId.split(":");
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
const targetChainData = chainData[namespace][reference];
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
if (typeof targetChainData === "undefined") {
|
|
|
|
throw new Error(`Missing chain data for chainId: ${chainId}`);
|
|
|
|
}
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
const rpcUrl = targetChainData.rpc[0];
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// verify signature
|
|
|
|
const hash = hashPersonalMessage(message);
|
|
|
|
const valid = await verifySignature(address, result, hash, rpcUrl);
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// format displayed result
|
|
|
|
return {
|
2022-02-04 19:48:43 +00:00
|
|
|
method: "personal_sign",
|
2022-02-09 10:06:48 +00:00
|
|
|
address,
|
|
|
|
valid,
|
|
|
|
result,
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
testSignTypedData: _createJsonRpcRequestHandler(async (chainId: string) => {
|
|
|
|
// test message
|
|
|
|
const message = JSON.stringify(eip712.example);
|
|
|
|
|
2022-02-10 13:34:32 +00:00
|
|
|
const address = getAddressByChainId(chainId);
|
2022-02-09 10:06:48 +00:00
|
|
|
|
|
|
|
// eth_signTypedData params
|
|
|
|
const params = [address, message];
|
|
|
|
|
|
|
|
// send message
|
|
|
|
const result = await client!.request({
|
|
|
|
topic: session!.topic,
|
|
|
|
chainId,
|
|
|
|
request: {
|
|
|
|
method: "eth_signTypedData",
|
|
|
|
params,
|
|
|
|
},
|
|
|
|
});
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// split chainId
|
|
|
|
const [namespace, reference] = chainId.split(":");
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
const targetChainData = chainData[namespace][reference];
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
if (typeof targetChainData === "undefined") {
|
|
|
|
throw new Error(`Missing chain data for chainId: ${chainId}`);
|
|
|
|
}
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
const rpcUrl = targetChainData.rpc[0];
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// verify signature
|
|
|
|
const hash = hashTypedDataMessage(message);
|
|
|
|
const valid = await verifySignature(address, result, hash, rpcUrl);
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// format displayed result
|
|
|
|
return {
|
2022-02-04 19:48:43 +00:00
|
|
|
method: "eth_signTypedData",
|
2022-02-09 10:06:48 +00:00
|
|
|
address,
|
|
|
|
valid,
|
|
|
|
result,
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
};
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// -------- COSMOS RPC METHODS --------
|
|
|
|
|
|
|
|
const cosmosRpc = {
|
|
|
|
testSignDirect: _createJsonRpcRequestHandler(async (chainId: string) => {
|
|
|
|
// test direct sign doc inputs
|
|
|
|
const inputs = {
|
|
|
|
fee: [{ amount: "2000", denom: "ucosm" }],
|
|
|
|
pubkey: "AgSEjOuOr991QlHCORRmdE5ahVKeyBrmtgoYepCpQGOW",
|
|
|
|
gasLimit: 200000,
|
|
|
|
accountNumber: 1,
|
|
|
|
sequence: 1,
|
|
|
|
bodyBytes:
|
|
|
|
"0a90010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e6412700a2d636f736d6f7331706b707472653766646b6c366766727a6c65736a6a766878686c63337234676d6d6b38727336122d636f736d6f7331717970717870713971637273737a673270767871367273307a716733797963356c7a763778751a100a0575636f736d120731323334353637",
|
|
|
|
authInfoBytes:
|
|
|
|
"0a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a21034f04181eeba35391b858633a765c4a0c189697b40d216354d50890d350c7029012040a020801180112130a0d0a0575636f736d12043230303010c09a0c",
|
|
|
|
};
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// split chainId
|
|
|
|
const [namespace, reference] = chainId.split(":");
|
|
|
|
|
|
|
|
// format sign doc
|
|
|
|
const signDoc = formatDirectSignDoc(
|
|
|
|
inputs.fee,
|
|
|
|
inputs.pubkey,
|
|
|
|
inputs.gasLimit,
|
|
|
|
inputs.accountNumber,
|
|
|
|
inputs.sequence,
|
|
|
|
inputs.bodyBytes,
|
|
|
|
reference,
|
|
|
|
);
|
|
|
|
|
2022-02-10 13:34:32 +00:00
|
|
|
const address = getAddressByChainId(chainId);
|
2022-02-09 10:06:48 +00:00
|
|
|
|
|
|
|
// cosmos_signDirect params
|
|
|
|
const params = {
|
|
|
|
signerAddress: address,
|
|
|
|
signDoc: stringifySignDocValues(signDoc),
|
|
|
|
};
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// send message
|
|
|
|
const result = await client!.request({
|
|
|
|
topic: session!.topic,
|
|
|
|
chainId,
|
|
|
|
request: {
|
|
|
|
method: "cosmos_signDirect",
|
|
|
|
params,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const targetChainData = chainData[namespace][reference];
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
if (typeof targetChainData === "undefined") {
|
|
|
|
throw new Error(`Missing chain data for chainId: ${chainId}`);
|
|
|
|
}
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// TODO: check if valid
|
|
|
|
const valid = true;
|
2022-02-04 19:48:43 +00:00
|
|
|
|
2022-02-09 10:06:48 +00:00
|
|
|
// format displayed result
|
|
|
|
return {
|
|
|
|
method: "cosmos_signDirect",
|
|
|
|
address,
|
|
|
|
valid,
|
|
|
|
result: result.signature.signature,
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
testSignAmino: _createJsonRpcRequestHandler(async (chainId: string) => {
|
|
|
|
// split chainId
|
|
|
|
const [namespace, reference] = chainId.split(":");
|
|
|
|
|
|
|
|
// test amino sign doc
|
|
|
|
const signDoc = {
|
|
|
|
msgs: [],
|
|
|
|
fee: { amount: [], gas: "23" },
|
|
|
|
chain_id: "foochain",
|
|
|
|
memo: "hello, world",
|
|
|
|
account_number: "7",
|
|
|
|
sequence: "54",
|
|
|
|
};
|
|
|
|
|
2022-02-10 13:34:32 +00:00
|
|
|
const address = getAddressByChainId(chainId);
|
2022-02-09 10:06:48 +00:00
|
|
|
|
|
|
|
// cosmos_signAmino params
|
|
|
|
const params = { signerAddress: address, signDoc };
|
|
|
|
|
|
|
|
// send message
|
|
|
|
const result = await client!.request({
|
|
|
|
topic: session!.topic,
|
|
|
|
chainId,
|
|
|
|
request: {
|
|
|
|
method: "cosmos_signAmino",
|
|
|
|
params,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const targetChainData = chainData[namespace][reference];
|
|
|
|
|
|
|
|
if (typeof targetChainData === "undefined") {
|
|
|
|
throw new Error(`Missing chain data for chainId: ${chainId}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: check if valid
|
|
|
|
const valid = true;
|
|
|
|
|
|
|
|
// format displayed result
|
|
|
|
return {
|
|
|
|
method: "cosmos_signAmino",
|
|
|
|
address,
|
|
|
|
valid,
|
|
|
|
result: result.signature.signature,
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
};
|
2022-02-04 19:48:43 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<JsonRpcContext.Provider
|
|
|
|
value={{
|
|
|
|
chainData,
|
|
|
|
ping,
|
2022-02-09 10:06:48 +00:00
|
|
|
ethereumRpc,
|
|
|
|
cosmosRpc,
|
2022-02-04 19:48:43 +00:00
|
|
|
rpcResult: result,
|
|
|
|
isRpcRequestPending: pending,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</JsonRpcContext.Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useJsonRpc() {
|
|
|
|
const context = useContext(JsonRpcContext);
|
|
|
|
if (context === undefined) {
|
|
|
|
throw new Error("useJsonRpc must be used within a JsonRpcContextProvider");
|
|
|
|
}
|
|
|
|
return context;
|
|
|
|
}
|