Skip to content

adamant-api / api / TransactionsOptions

Interface: TransactionsOptions

Defined in: src/api/index.ts:306

Options for /api/transactions (getTransactions, getTransaction). This is the most permissive endpoint: it applies the full filter set, including the amount filters (minAmount / maxAmount) that the chat and KVS endpoints do not support.

Extends

Properties

blockId?

ts
optional blockId?: string;

Defined in: src/api/index.ts:264

Inherited from

TransactionQueryParameters.blockId


fromHeight?

ts
optional fromHeight?: number;

Defined in: src/api/index.ts:265

Inherited from

TransactionQueryParameters.fromHeight


fromTimestamp?

ts
optional fromTimestamp?: number;

Defined in: src/api/index.ts:267

Inherited from

TransactionQueryParameters.fromTimestamp


fromUnixTime?

ts
optional fromUnixTime?: number;

Defined in: src/api/index.ts:316


inId?

ts
optional inId?: string;

Defined in: src/api/index.ts:274

Inherited from

TransactionQueryParameters.inId


isIn?

ts
optional isIn?: string;

Defined in: src/api/index.ts:275

Inherited from

TransactionQueryParameters.isIn


limit?

ts
optional limit?: number;

Defined in: src/api/index.ts:276

Inherited from

TransactionQueryParameters.limit


maxAmount?

ts
optional maxAmount?: number;

Defined in: src/api/index.ts:321


maxFee?

ts
optional maxFee?: number;

Defined in: src/api/index.ts:270

Inherited from

TransactionQueryParameters.maxFee


minAmount?

ts
optional minAmount?: number;

Defined in: src/api/index.ts:320


minConfirmations?

ts
optional minConfirmations?: number;

Defined in: src/api/index.ts:271

Inherited from

TransactionQueryParameters.minConfirmations


minFee?

ts
optional minFee?: number;

Defined in: src/api/index.ts:269

Inherited from

TransactionQueryParameters.minFee


offset?

ts
optional offset?: number;

Defined in: src/api/index.ts:277

Inherited from

TransactionQueryParameters.offset


orderBy?

ts
optional orderBy?: string;

Defined in: src/api/index.ts:278

Inherited from

TransactionQueryParameters.orderBy


recipientId?

ts
optional recipientId?: string;

Defined in: src/api/index.ts:273

Inherited from

TransactionQueryParameters.recipientId


recipientIds?

ts
optional recipientIds?: string[];

Defined in: src/api/index.ts:308


recipientPublicKey?

ts
optional recipientPublicKey?: string;

Defined in: src/api/index.ts:311


recipientPublicKeys?

ts
optional recipientPublicKeys?: string[];

Defined in: src/api/index.ts:312


returnAsset?

ts
optional returnAsset?: 0 | 1;

Defined in: src/api/index.ts:315


returnUnconfirmed?

ts
optional returnUnconfirmed?: 0 | 1;

Defined in: src/api/index.ts:263

Inherited from

TransactionQueryParameters.returnUnconfirmed


senderId?

ts
optional senderId?: string;

Defined in: src/api/index.ts:272

Inherited from

TransactionQueryParameters.senderId


senderIds?

ts
optional senderIds?: string[];

Defined in: src/api/index.ts:307


senderPublicKey?

ts
optional senderPublicKey?: string;

Defined in: src/api/index.ts:309


senderPublicKeys?

ts
optional senderPublicKeys?: string[];

Defined in: src/api/index.ts:310


toHeight?

ts
optional toHeight?: number;

Defined in: src/api/index.ts:266

Inherited from

TransactionQueryParameters.toHeight


toTimestamp?

ts
optional toTimestamp?: number;

Defined in: src/api/index.ts:268

Inherited from

TransactionQueryParameters.toTimestamp


toUnixTime?

ts
optional toUnixTime?: number;

Defined in: src/api/index.ts:317


type?

ts
optional type?: number;

Defined in: src/api/index.ts:313


types?

ts
optional types?: number[];

Defined in: src/api/index.ts:314

Released under the GPL-3.0 License.