UNPKG

srid

Version:

A library for generating secure shared, traceable, and country-aware IDs for users, wallets, and transactions.

12 lines (11 loc) 285 B
declare class SRID { private countryCode; private sharedId; private transactionCount; constructor(countryCode: string); getSharedId(): string; generateUserId(): string; generateWalletId(): string; generateTransactionId(): string; } export default SRID;