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.
1 parent 4941514 commit 0a8e487Copy full SHA for 0a8e487
src/types/transactions.ts
@@ -188,6 +188,10 @@ export type MultiSend = {
188
isCancellation: boolean
189
}
190
191
+export type Cancellation = Custom & {
192
+ isCancellation: true
193
+}
194
+
195
export type Creation = {
196
type: 'Creation'
197
creator: AddressEx
@@ -273,7 +277,7 @@ export type ConflictHeader = {
273
277
type: 'CONFLICT_HEADER'
274
278
275
279
276
-export type TransactionListItem = Transaction | Label | ConflictHeader
280
+export type TransactionListItem = Transaction | DateLabel | Label | ConflictHeader
281
282
export type Page<T> = {
283
next?: string
0 commit comments