Documentation Index
Fetch the complete documentation index at: https://docs.relay.link/llms.txt
Use this file to discover all available pages before exploring further.
What is an adapter anyway?
An adapter is a function that takes parameters and returns an object that adheres to this interface. Let’s review the interface in depth:| Property | Description | Required |
|---|---|---|
| vmType | A string representing a supported vmType (evm svm bvm suivm tvm lvm) | ✅ |
| getChainId | An async function that returns a chain id | ✅ |
| handleSignMessageStep | An async function that given a signature step item and a step generates a signature | ✅ |
| handleSendTransactionStep | An async function that given a chain id, a transaction step item and a step returns a transaction hash | ✅ |
| handleConfirmTransactionStep | An async function that given a transaction hash, a chain id, an onReplaced function and an onCancelled function returns a promise with either an evm receipt or an svm receipt | ✅ |
| address | An async function that returns the currently connected to address, an address that can sign messages and submit transactions | ✅ |
| switchChain | An async function that given a chain id switches to that chain, either by prompting the user or automatically switching chains | ✅ |
| transport | An optional transport to use when making rpc calls. | ❌ |
| getBalance | An optional method to override the default balance fetching logic for selected tokens in the ui kit. | ❌ |
| supportsAtomicBatch | An optional async function that takes a chain ID and returns whether the wallet supports EIP-5792’s atomic batch capability. EVM wallets only. | ❌ |
| handleBatchTransactionStep | An optional async function that takes a chain ID and an array of transaction step items, returning a call bundle identifier for batch processing. Only available for EVM wallets that support atomic batching. | ❌ |
| isEOA | An optional boolean that indicates if the wallet is an EOA (Externally Owned Account). This is used to determine if the wallet is an EOA or a contract account. | ❌ |
What adapters are available out of the box?
The following adapters are officially maintained and developed by the Relay team: SVM Adapter: This adapter gives the sdk the ability to submit transactions on SVM (Solana Virtual Machine) networks. It does not support signing messages and under the hood it uses the solana web3 sdk. Bitcoin Adapter: This adapter gives the sdk the ability to submit transaction to the Bitcoin blockchain. Under the hood it uses bitcoinjs-lib to sign and submit transactions. Note that bitcoin transactions have a long finalization period and unlike quicker vms are not polled in real time for confirmation. Viem Adapter: This adapter is the default one used when no adapter is provided. You can also import it yourself to convert any viem wallet client into an adapted wallet ready to be used in the sdk. Ethers Adapter: If your application uses ethers then you’ll need this adapter to use the SDK. You’ll still need to install viem as that’s required for polling transactions but you can pass in your ethers signer to submit transactions and sign messages. Sui Adapter: This adapter gives the sdk the ability to submit transactions to the Sui blockchain. Under the hood it uses the @mysten/sui sdk. Tron Adapter: This adapter gives the sdk the ability to submit transactions to the Tron blockchain. Under the hood it uses the tronweb sdk. Lighter Adapter: This adapter gives the SDK the ability to deposit to Lighter from any Relay-supported chain. It owns the full Lighter session lifecycle — resolving the user’s Lighter account index, generating an in-memory API key, and registering it viachangeApiKey on first transfer. Integrators who already run their own Lighter session (backend-provisioned key, wallet-level integration) can pass a pre-built signerClient to bypass the bootstrap entirely.
How can I use an adapter?
You can either make your own adapter, as long as it adheres to the interface above or you can use one of the officials adapters developed and maintained by the Relay team. All of our sdk methods handle a viem wallet or adapted wallet. The viem wallet adapter is used by default when a viem wallet is passed in for convenience. Refer below for implementation details:Viem adapter options
adaptViemWallet accepts an optional second argument for adapter-level configuration:
| Property | Description |
|---|---|
| disableCapabilitiesCheck | Skip wallet.getCapabilities calls used for EIP-5792 atomic-batch detection and smart-wallet detection. Set this for wallets with a broken getCapabilities implementation that hangs or never resolves. When true, execution falls back to sequential transactions. |