From 43b63afb654d7301740f7f09d652c0eaa9d3e9d2 Mon Sep 17 00:00:00 2001 From: Usame Algan Date: Mon, 14 Aug 2023 10:46:05 +0200 Subject: [PATCH 1/2] Add humanDescription to TransactionInfo type --- src/types/transactions.ts | 5 +++++ 1 file changed, 5 insertions(+) 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 From 36c54c52bae0e776e97d5cee70611737813e33ec Mon Sep 17 00:00:00 2001 From: Usame Algan Date: Mon, 14 Aug 2023 12:53:56 +0200 Subject: [PATCH 2/2] chore: Update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": [