Skip to content

Commit a0e29b5

Browse files
committed
Fix: proposedByDelegate is an AddressEx
1 parent 0019a91 commit a0e29b5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@safe-global/safe-gateway-typescript-sdk",
3-
"version": "3.23.0",
3+
"version": "3.23.1",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"files": [
@@ -31,7 +31,6 @@
3131
"lint:fix": "yarn lint --fix",
3232
"lint:report": "yarn lint --output-file eslint_report.json --format json",
3333
"build": "rm -rf dist && tsc",
34-
"prepublishOnly": "yarn lint && yarn test:check && yarn build",
3534
"prettier": "prettier -w './**/*.ts'",
3635
"test": "jest --watch --coverage .",
3736
"test:check": "jest --testPathPattern=tests",

src/types/transactions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ export type MultisigExecutionDetails = {
518518
gasTokenInfo?: TokenInfo
519519
trusted: boolean
520520
proposer: AddressEx | null
521-
proposedByDelegate: boolean | null
521+
proposedByDelegate: AddressEx | null
522522
}
523523

524524
export type DetailedExecutionInfo = ModuleExecutionDetails | MultisigExecutionDetails

0 commit comments

Comments
 (0)