@elysium-onchain-id/identity-sdk
Version:
Interact with BlockChain Identities.
17 lines (16 loc) • 491 B
TypeScript
import { ClaimScheme, ClaimTopic } from './claim/Claim.interface';
import { KeyPurpose, KeyType } from './identity/Key.interface';
import * as crypto from './crypto-module';
declare const enums: {
ClaimScheme: typeof ClaimScheme;
ClaimType: typeof ClaimTopic;
KeyPurpose: typeof KeyPurpose;
KeyType: typeof KeyType;
};
declare const contracts: {
ERC734: any;
ERC735: any;
Identity: any;
};
export { crypto, enums, contracts };
export * from './core/utils/Utils';