We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type
TransactionListItem
1 parent 13f272e commit d64a17aCopy full SHA for d64a17a
src/types/transactions.ts
@@ -206,18 +206,22 @@ export type TransactionSummary = {
206
export type Transaction = {
207
transaction: TransactionSummary
208
conflictType: 'None' | 'HasNext' | 'End'
209
+ type: 'TRANSACTION'
210
}
211
212
export type DateLabel = {
213
timestamp: number
214
+ type: 'DATE_LABEL'
215
216
217
export type Label = {
218
label: string
219
+ type: 'LABEL'
220
221
222
export type ConflictHeader = {
223
nonce: number
224
+ type: 'CONFLICT_HEADER'
225
226
227
export type TransactionListItem = Transaction | Label | ConflictHeader
0 commit comments