Skip to content

Commit

Permalink
fix: ensure addresse fields on txService request are checksummed
Browse files Browse the repository at this point in the history
  • Loading branch information
cristovaoth committed Dec 16, 2024
1 parent 8ba87b7 commit a746972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/execute/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const execute = async (

const apiKit = initApiKit(chain)
await apiKit.proposeTransaction({
safeAddress: safe,
safeAddress: getAddress(safe),
safeTransactionData: {
...safeTransaction,
// The Safe tx service requires checksummed addresses
Expand All @@ -136,7 +136,7 @@ export const execute = async (
gasPrice: String(safeTransaction.gasPrice),
},
safeTxHash,
senderAddress: proposer,
senderAddress: getAddress(proposer),
senderSignature: signature,
origin,
})
Expand Down

0 comments on commit a746972

Please sign in to comment.