@@ -43,7 +43,6 @@ export enum TransferDirection {
43
43
UNKNOWN = 'UNKNOWN' ,
44
44
}
45
45
46
- // https://safe.global/safe-client-gateway/docs/routes/transactions/models/enum.TransferInfo.html
47
46
export enum TransactionTokenType {
48
47
ERC20 = 'ERC20' ,
49
48
ERC721 = 'ERC721' ,
@@ -63,30 +62,26 @@ export enum SettingsInfoType {
63
62
DELETE_GUARD = 'DELETE_GUARD' ,
64
63
}
65
64
66
- // https://safe.global/safe-client-gateway/docs/routes/transactions/models/enum.TransactionInfo.html
67
65
export enum TransactionInfoType {
68
66
TRANSFER = 'Transfer' ,
69
67
SETTINGS_CHANGE = 'SettingsChange' ,
70
68
CUSTOM = 'Custom' ,
71
69
CREATION = 'Creation' ,
72
70
}
73
71
74
- // https://safe.global/safe-client-gateway/docs/routes/transactions/models/summary/enum.ConflictType.html
75
72
export enum ConflictType {
76
73
NONE = 'None' ,
77
74
HAS_NEXT = 'HasNext' ,
78
75
END = 'End' ,
79
76
}
80
77
81
- // https://safe.global/safe-client-gateway/docs/routes/transactions/models/summary/enum.TransactionListItem.html
82
78
export enum TransactionListItemType {
83
79
TRANSACTION = 'TRANSACTION' ,
84
80
LABEL = 'LABEL' ,
85
81
CONFLICT_HEADER = 'CONFLICT_HEADER' ,
86
82
DATE_LABEL = 'DATE_LABEL' ,
87
83
}
88
84
89
- // https://safe.global/safe-client-gateway/docs/routes/transactions/models/details/enum.DetailedExecutionInfo.html
90
85
export enum DetailedExecutionInfoType {
91
86
MULTISIG = 'MULTISIG' ,
92
87
MODULE = 'MODULE' ,
@@ -265,8 +260,6 @@ export type Transaction = {
265
260
type : TransactionListItemType . TRANSACTION
266
261
}
267
262
268
- // WIP types:
269
-
270
263
export type IncomingTransfer = Omit < Transaction , 'transaction' > & {
271
264
transaction : Omit < TransactionSummary , 'txInfo' | 'executionInfo' > & {
272
265
txInfo : Omit < Transfer , 'direction' > & { direction : TransferDirection . INCOMING }
@@ -292,9 +285,6 @@ export type DateLabel = {
292
285
type : TransactionListItemType . DATE_LABEL
293
286
}
294
287
295
- /**
296
- * @see https://gnosis.github.io/safe-client-gateway/docs/routes/transactions/models/summary/enum.Label.html
297
- */
298
288
export enum LabelValue {
299
289
Queued = 'Queued' ,
300
290
Next = 'Next' ,
0 commit comments