-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bugfix/abi encoding #1609
Bugfix/abi encoding #1609
Changes from all commits
66ae3a0
2df103f
e0b1126
667bb65
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ import { generateContractByteCodeLinear, generateSalt } from './helpers/utils'; | |
|
||
export class AzoriusTxBuilder extends BaseTxBuilder { | ||
private readonly safeContract: GnosisSafeL2; | ||
private readonly predictedSafeAddress: string; | ||
|
||
private encodedSetupTokenData: string | undefined; | ||
private encodedSetupERC20WrapperData: string | undefined; | ||
|
@@ -54,7 +53,6 @@ export class AzoriusTxBuilder extends BaseTxBuilder { | |
azoriusContracts: AzoriusContracts, | ||
daoData: AzoriusERC20DAO | AzoriusERC721DAO, | ||
safeContract: GnosisSafeL2, | ||
predictedSafeAddress: string, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unused, removing. |
||
parentAddress?: string, | ||
parentTokenAddress?: string, | ||
) { | ||
|
@@ -68,7 +66,6 @@ export class AzoriusTxBuilder extends BaseTxBuilder { | |
); | ||
|
||
this.safeContract = safeContract; | ||
this.predictedSafeAddress = predictedSafeAddress; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unused, removing. |
||
|
||
this.tokenNonce = getRandomBytes(); | ||
this.claimNonce = getRandomBytes(); | ||
|
@@ -349,8 +346,9 @@ export class AzoriusTxBuilder extends BaseTxBuilder { | |
private setEncodedSetupTokenClaimData() { | ||
const azoriusGovernanceDaoData = this.daoData as AzoriusERC20DAO; | ||
const encodedInitTokenData = defaultAbiCoder.encode( | ||
['address', 'address', 'address', 'uint256'], | ||
['uint32', 'address', 'address', 'address', 'uint256'], | ||
[ | ||
0, // deadlineBlock. We don't capture this in the UI. 0 means no deadline to claim. | ||
this.safeContract.address, | ||
this.parentTokenAddress, | ||
this.predictedTokenAddress, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,7 +217,7 @@ export class FreezeGuardTxBuilder extends BaseTxBuilder { | |
'setUp', | ||
[ | ||
ethers.utils.defaultAbiCoder.encode( | ||
['uint256', 'uint256', 'address', 'address', 'address'], | ||
['uint32', 'uint32', 'address', 'address', 'address'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The contract is expecting Does this currently work as expected? I bet so, because we have tested freeze guard things before. Will it be a problem to change this? Hope not.
I need to do some manual testing to make sure this change still works as intended, just like this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did manual testing, this works as expected. |
||
[ | ||
subDaoData.timelockPeriod, // Timelock Period | ||
subDaoData.executionPeriod, // Execution Period | ||
|
@@ -231,19 +231,14 @@ export class FreezeGuardTxBuilder extends BaseTxBuilder { | |
} | ||
|
||
private setFreezeGuardCallDataAzorius() { | ||
const subDaoData = this.daoData as SubDAO; | ||
|
||
this.freezeGuardCallData = AzoriusFreezeGuard__factory.createInterface().encodeFunctionData( | ||
'setUp', | ||
[ | ||
ethers.utils.defaultAbiCoder.encode( | ||
['address', 'address', 'address', 'address', 'uint256'], | ||
['address', 'address'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We were straight up "encoding too much", here. The contract only expects two I bet this still works currently because the smart contract probably just discards everything after the first two address parameters. Need to do some manual testing on this too of course. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did manual testing, this works as expected. |
||
[ | ||
this.parentAddress, // Owner -- Parent DAO | ||
this.freezeVotingAddress, // Freeze Voting | ||
this.strategyAddress, // Base Strategy | ||
this.azoriusAddress, // Azorius | ||
subDaoData.executionPeriod, // Execution Period | ||
], | ||
), | ||
], | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,6 @@ export class TxBuilderFactory extends BaseTxBuilder { | |
this.azoriusContracts!, | ||
this.daoData as AzoriusERC20DAO, | ||
this.safeContract!, | ||
this.predictedSafeAddress!, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unused, removing. |
||
this.parentAddress, | ||
this.parentTokenAddress, | ||
); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused, removing.