ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
19 lines (18 loc) • 467 B
TypeScript
import { CryptoAddressExtendedData } from "..";
type CryptoAddress = {
id: number;
name: string;
address: string;
network_id: number;
asset_code_id: number;
is_primary: number;
status: number;
verification_status: number;
extended_data: CryptoAddressExtendedData;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
};
export type { CryptoAddress };