lotus-sdk
Version:
Central repository for several classes of tools for integrating with, and building for, the Lotusia ecosystem
22 lines • 508 B
TypeScript
import type { Address, Script, ScriptType } from '../lib/bitcore/index.js';
export type GeoIPData = {
country: string;
city: string;
};
export type GeoIPResponse = {
success: boolean;
status: string;
ip: string;
data: GeoIPData;
type: 'unicast';
};
export type Wallet = {
hdPrivateKey: string;
privateKey: string;
publicKey: string;
address: Address;
script: Script;
scriptPayload: string;
scriptType: ScriptType;
};
//# sourceMappingURL=types.d.ts.map