UNPKG

@bridgesplit/rwa-token-sdk

Version:

RWA Token SDK for the development of permissioned tokens on SVM blockchains.

9 lines (8 loc) 525 B
import { type IdlTypes, type IdlAccounts } from "@coral-xyz/anchor"; import { type DataRegistryIdlTypes } from "../programs"; /** Represents on chain data registry account. */ export type DataRegistryAccount = IdlAccounts<DataRegistryIdlTypes>["dataRegistryAccount"]; /** Represents on chain data account pda. */ export type DataAccount = IdlAccounts<DataRegistryIdlTypes>["dataAccount"]; /** Represents on chain data account type/document. */ export type DataAccountType = IdlTypes<DataRegistryIdlTypes>["dataAccountType"];