βAdding accounts
Programmatically add new wallet connections and allow users to connect their account to Alby with a click of a button.
API
async function addAccount(request: AddAccountRequest) : AddAccountResponse;
interface AddAccountRequest = {
name: string;
connector: string;
config: object;
}
interface AddAccountResponse = {
success: boolean;
error: string?;
}Name
Connector
Config
Code Example
Screenshots
Demo
Last updated
Was this helpful?



