@bridgesplit/rwa-token-sdk
Version:
RWA Token SDK for the development of permissioned tokens on SVM blockchains.
7 lines (6 loc) • 398 B
TypeScript
import { type IdlAccounts } from "@coral-xyz/anchor";
import { type IdentityRegistryIdlTypes } from "../programs";
/** Represents on chain identity registry. */
export type IdentityRegistryAccount = IdlAccounts<IdentityRegistryIdlTypes>["identityRegistryAccount"];
/** Represents on chain identity account. */
export type IdentityAccount = IdlAccounts<IdentityRegistryIdlTypes>["identityAccount"];