Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-react-gateway-sdk",
"version": "2.5.3",
"version": "2.5.4",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
Expand Down
4 changes: 4 additions & 0 deletions src/types/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,18 +206,22 @@ export type TransactionSummary = {
export type Transaction = {
transaction: TransactionSummary
conflictType: 'None' | 'HasNext' | 'End'
type: 'TRANSACTION'
}

export type DateLabel = {
timestamp: number
type: 'DATE_LABEL'
}

export type Label = {
label: string
type: 'LABEL'
}

export type ConflictHeader = {
nonce: number
type: 'CONFLICT_HEADER'
}

export type TransactionListItem = Transaction | Label | ConflictHeader
Expand Down