fix(with-solana): use spec-compliant solana_ method prefix

This commit is contained in:
Ben Kremer 2022-03-15 15:03:27 +01:00
parent 8963cc8cc4
commit 8c5e817760

View File

@ -22,8 +22,8 @@ import { AccountBalances, ChainNamespaces, getAllChainNamespaces } from "../help
*/ */
export enum SolanaRpcMethod { export enum SolanaRpcMethod {
SOL_SIGN_TRANSACTION = "sol_signTransaction", SOL_SIGN_TRANSACTION = "solana_signTransaction",
SOL_SIGN_MESSAGE = "sol_signMessage", SOL_SIGN_MESSAGE = "solana_signMessage",
} }
interface IContext { interface IContext {
client: Client | undefined; client: Client | undefined;