/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type BtcBasedBalance = { /** * Total sum of the assets that arrives to the address. */ incoming?: string; /** * Total sum of the assets that leaves from the address. */ outgoing?: string; }