Interface SolanaAccountData

interface SolanaAccountData {
    address: string;
    isSigner: boolean;
    isWritable: boolean;
}

Properties

address: string
isSigner: boolean
isWritable: boolean