refactor(express-relay): Update execution params hash data (#1476)

This commit is contained in:
Dani Mehrjerdi 2024-04-20 11:25:11 +04:00 committed by GitHub
parent e04edcfece
commit bdc2e967b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 33 additions and 45 deletions

View File

@ -300,17 +300,14 @@ export class Client {
privateKey: Hex
): Promise<OpportunityBid> {
const types = {
SignedParams: [
{ name: "executionParams", type: "ExecutionParams" },
{ name: "signer", type: "address" },
{ name: "deadline", type: "uint256" },
],
ExecutionParams: [
{ name: "sellTokens", type: "TokenAmount[]" },
{ name: "buyTokens", type: "TokenAmount[]" },
{ name: "executor", type: "address" },
{ name: "targetContract", type: "address" },
{ name: "targetCalldata", type: "bytes" },
{ name: "targetCallValue", type: "uint256" },
{ name: "validUntil", type: "uint256" },
{ name: "bidAmount", type: "uint256" },
],
TokenAmount: [
@ -327,18 +324,16 @@ export class Client {
chainId: Number(opportunity.eip712Domain.chainId),
},
types,
primaryType: "SignedParams",
primaryType: "ExecutionParams",
message: {
executionParams: {
sellTokens: opportunity.sellTokens,
buyTokens: opportunity.buyTokens,
targetContract: opportunity.targetContract,
targetCalldata: opportunity.targetCalldata,
targetCallValue: opportunity.targetCallValue,
bidAmount: bidParams.amount,
},
signer: account.address,
deadline: bidParams.validUntil,
sellTokens: opportunity.sellTokens,
buyTokens: opportunity.buyTokens,
executor: account.address,
targetContract: opportunity.targetContract,
targetCalldata: opportunity.targetCalldata,
targetCallValue: opportunity.targetCallValue,
validUntil: bidParams.validUntil,
bidAmount: bidParams.amount,
},
});

View File

@ -411,17 +411,14 @@ def sign_bid(
"verifyingContract": opportunity.eip_712_domain.verifying_contract,
}
message_types = {
"SignedParams": [
{"name": "executionParams", "type": "ExecutionParams"},
{"name": "signer", "type": "address"},
{"name": "deadline", "type": "uint256"},
],
"ExecutionParams": [
{"name": "sellTokens", "type": "TokenAmount[]"},
{"name": "buyTokens", "type": "TokenAmount[]"},
{"name": "executor", "type": "address"},
{"name": "targetContract", "type": "address"},
{"name": "targetCalldata", "type": "bytes"},
{"name": "targetCallValue", "type": "uint256"},
{"name": "validUntil", "type": "uint256"},
{"name": "bidAmount", "type": "uint256"},
],
"TokenAmount": [
@ -432,30 +429,26 @@ def sign_bid(
# the data to be signed
message_data = {
"executionParams": {
"sellTokens": [
{
"token": token.token,
"amount": int(token.amount),
}
for token in opportunity.sell_tokens
],
"buyTokens": [
{
"token": token.token,
"amount": int(token.amount),
}
for token in opportunity.buy_tokens
],
"targetContract": opportunity.target_contract,
"targetCalldata": bytes.fromhex(
opportunity.target_calldata.replace("0x", "")
),
"targetCallValue": opportunity.target_call_value,
"bidAmount": bid_amount,
},
"signer": executor,
"deadline": valid_until,
"sellTokens": [
{
"token": token.token,
"amount": int(token.amount),
}
for token in opportunity.sell_tokens
],
"buyTokens": [
{
"token": token.token,
"amount": int(token.amount),
}
for token in opportunity.buy_tokens
],
"executor": executor,
"targetContract": opportunity.target_contract,
"targetCalldata": bytes.fromhex(opportunity.target_calldata.replace("0x", "")),
"targetCallValue": opportunity.target_call_value,
"validUntil": valid_until,
"bidAmount": bid_amount,
}
signed_typed_data = Account.sign_typed_data(