Skip to content

Commit

Permalink
Fix the param parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
lpopo0856 committed Feb 23, 2024
1 parent c159139 commit 79c13ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/feralfile-exhibition-v5/feralfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ func (c *FeralfileExhibitionV5Contract) Call(wallet *ethereum.Wallet, method, fu
SaleData struct {
Price ethereum.BigInt `json:"price"`
Cost ethereum.BigInt `json:"cost"`
ExpiryTime ethereum.BigInt `json:"expiry_time"`
ExpiryTime ethereum.BigInt `json:"expiryTime"`
Destination common.Address `json:"destination"`
TokenIds []ethereum.BigInt `json:"token_ids"`
TokenIds []ethereum.BigInt `json:"tokenIds"`
RevenueShares [][]struct {
Recipient common.Address `json:"recipient"`
Bps ethereum.BigInt `json:"bps"`
} `json:"revenue_shares"`
PayByVaultContract bool `json:"pay_by_vault_contract"`
BiddingUnix ethereum.BigInt `json:"bidding_unix"`
} `json:"revenueShares"`
PayByVaultContract bool `json:"payByVaultContract"`
BiddingUnix ethereum.BigInt `json:"biddingUnix"`
} `json:"sale_data"`
R string `json:"r"`
S string `json:"s"`
Expand Down

0 comments on commit 79c13ee

Please sign in to comment.