From e64356bd051930fbb26fad5293a7a7684f317117 Mon Sep 17 00:00:00 2001 From: Ted Palmer Date: Mon, 15 Dec 2025 12:13:45 -0500 Subject: [PATCH 1/2] Update Solana adapter docs --- packages/relay-svm-wallet-adapter/src/adapter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/relay-svm-wallet-adapter/src/adapter.ts b/packages/relay-svm-wallet-adapter/src/adapter.ts index 3f23e51b3..9214a80a0 100644 --- a/packages/relay-svm-wallet-adapter/src/adapter.ts +++ b/packages/relay-svm-wallet-adapter/src/adapter.ts @@ -18,9 +18,9 @@ import { /** * Adapts a Solana wallet to work with the Relay SDK * @param walletAddress - The public key address of the Solana wallet - * @param chainId - The chain ID for the Solana network (e.g., 101 for mainnet, 102 for testnet) + * @param chainId - The chain ID for the Solana network (Relay uses 792703809) * @param connection - The Solana web3.js Connection instance for interacting with the network - * @param signAndSendTransaction - Function to sign and send a transaction, returning a promise with the transaction signature + * @param signAndSendTransaction - Function to sign and send a transaction, returning a promise with a base58 encoded transaction signature * @param payerKey - Optional public key of the account that will pay for transaction fees (defaults to walletAddress) * @returns An AdaptedWallet object that conforms to the Relay SDK interface */ From 4060ad673a40be2062216dae150fe8922c2b5c57 Mon Sep 17 00:00:00 2001 From: Ted Palmer Date: Mon, 15 Dec 2025 12:14:07 -0500 Subject: [PATCH 2/2] feat: changeset --- .changeset/shaggy-times-read.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/shaggy-times-read.md diff --git a/.changeset/shaggy-times-read.md b/.changeset/shaggy-times-read.md new file mode 100644 index 000000000..38e4c709a --- /dev/null +++ b/.changeset/shaggy-times-read.md @@ -0,0 +1,5 @@ +--- +'@relayprotocol/relay-svm-wallet-adapter': patch +--- + +Update solana adapter docs