File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @safe-global/safe-gateway-typescript-sdk" ,
3
- "version" : " 3.8.1 " ,
3
+ "version" : " 3.9.0 " ,
4
4
"main" : " dist/index.js" ,
5
5
"types" : " dist/index.d.ts" ,
6
6
"files" : [
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ export type Transfer = {
124
124
recipient : AddressEx
125
125
direction : TransferDirection
126
126
transferInfo : TransferInfo
127
+ humanDescription ?: string
127
128
}
128
129
129
130
export type SetFallbackHandler = {
@@ -194,6 +195,7 @@ export type SettingsChange = {
194
195
type : TransactionInfoType . SETTINGS_CHANGE
195
196
dataDecoded : DataDecoded
196
197
settingsInfo ?: SettingsInfo
198
+ humanDescription ?: string
197
199
}
198
200
199
201
export type Custom = {
@@ -204,6 +206,7 @@ export type Custom = {
204
206
methodName ?: string
205
207
actionCount ?: number
206
208
isCancellation : boolean
209
+ humanDescription ?: string
207
210
}
208
211
209
212
export type MultiSend = {
@@ -214,6 +217,7 @@ export type MultiSend = {
214
217
methodName : 'multiSend'
215
218
actionCount : number
216
219
isCancellation : boolean
220
+ humanDescription ?: string
217
221
}
218
222
219
223
export type Cancellation = Custom & {
@@ -226,6 +230,7 @@ export type Creation = {
226
230
transactionHash : string
227
231
implementation ?: AddressEx
228
232
factory ?: AddressEx
233
+ humanDescription ?: string
229
234
}
230
235
231
236
export type TransactionInfo = Transfer | SettingsChange | Custom | MultiSend | Cancellation | Creation
You can’t perform that action at this time.
0 commit comments