@dstoken-solana/rwa-token-sdk
Version:
RWA Token SDK for the development of permissioned tokens on SVM blockchains.
8 lines • 526 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"];
export type WalletIdentityAccount = IdlAccounts<IdentityRegistryIdlTypes>["walletIdentity"];
//# sourceMappingURL=types.d.ts.map