diff --git a/package.json b/package.json index 892143ad..76dfda65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@safe-global/safe-gateway-typescript-sdk", - "version": "3.8.1", + "version": "3.9.0", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ diff --git a/src/types/transactions.ts b/src/types/transactions.ts index 3f246559..7c6a5755 100644 --- a/src/types/transactions.ts +++ b/src/types/transactions.ts @@ -124,6 +124,7 @@ export type Transfer = { recipient: AddressEx direction: TransferDirection transferInfo: TransferInfo + humanDescription?: string } export type SetFallbackHandler = { @@ -194,6 +195,7 @@ export type SettingsChange = { type: TransactionInfoType.SETTINGS_CHANGE dataDecoded: DataDecoded settingsInfo?: SettingsInfo + humanDescription?: string } export type Custom = { @@ -204,6 +206,7 @@ export type Custom = { methodName?: string actionCount?: number isCancellation: boolean + humanDescription?: string } export type MultiSend = { @@ -214,6 +217,7 @@ export type MultiSend = { methodName: 'multiSend' actionCount: number isCancellation: boolean + humanDescription?: string } export type Cancellation = Custom & { @@ -226,6 +230,7 @@ export type Creation = { transactionHash: string implementation?: AddressEx factory?: AddressEx + humanDescription?: string } export type TransactionInfo = Transfer | SettingsChange | Custom | MultiSend | Cancellation | Creation