UNPKG

@circle-fin/circle-sdk

Version:
39 lines (38 loc) 1.08 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Chain } from "./chain"; import { Currency } from "./currency"; /** * * @export * @interface AddressObject */ export interface AddressObject { /** * An alphanumeric string representing a blockchain address. Will be in different formats for different chains. It is important to preserve the exact formatting and capitalization of the address. * @type {string} * @memberof AddressObject */ address?: string; /** * The secondary identifier for a blockchain address. An example of this is the memo field on the Stellar network, which can be text, id, or hash format. * @type {string} * @memberof AddressObject */ addressTag?: string | null; /** * * @type {Currency} * @memberof AddressObject */ currency?: Currency | null; /** * * @type {Chain} * @memberof AddressObject */ chain?: Chain; }