Skip to main content

Solana Disconnect

Disconnect Example

import { Web3Kit, ChainType } from "@tokenup/web3kit";

async function connect() {
const web3Kit = new Web3Kit();
const serRes: boolean = await web3Kit.request({
chainType: ChainType.Solana,
methodName: "disconnect",
});
}

Request Parameters

{
chainType: ChainType.Solana,
methodName: "disconnect",
};