UNPKG

@unique.vc/udm.js

Version:

UDM - Unique Delegation Manager is a simple yet efficient solution allowing to bridge self-custody and user experience, have best from both worlds and potentially extend the reach of the industry.

11 lines (10 loc) 287 B
import { PublicKey } from '@solana/web3.js'; export interface IDelegation { master: PublicKey; representative: PublicKey; authorised: boolean; } export interface ITokenAccountInfo { numberOfRepresentativeTokenAccounts: number; numberOfMasterTokenAccounts?: number; }