@datamodels/identity-accounts-crypto
Version:
DataModel implementation of the **Crypto Accounts** schema and definition specified in [CIP-21](https://github.com/ceramicnetwork/CIP/blob/main/CIPs/CIP-21/CIP-21.md).
10 lines (9 loc) • 398 B
TypeScript
import type { ModelTypeAliases, EncodedManagedModel } from '@glazed/types';
import type { CryptoAccountLinks } from '../types/CryptoAccounts';
export type { CryptoAccountLinks } from '../types/CryptoAccounts';
export declare type ModelTypes = ModelTypeAliases<{
CryptoAccounts: CryptoAccountLinks;
}, {
cryptoAccounts: 'CryptoAccounts';
}>;
export declare const model: EncodedManagedModel;