-
Notifications
You must be signed in to change notification settings - Fork 96
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
eth: v1 contract #2038
base: master
Are you sure you want to change the base?
eth: v1 contract #2038
Conversation
client/asset/eth/eth.go
Outdated
spent = status.Step >= dexeth.SSRedeemed | ||
confs = uint32(hdr.Number.Uint64() - status.BlockHeight + 1) | ||
|
||
// NOTE: confs will equal to the block number for the version 1 contract if spent == true, | ||
// because BlockHeight will be zero. This is probably fine, since the caller | ||
// will examine spent first? Otherwise, we could do this. |
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.
Interesting problem to have here, but I think it's right to be using what's recorded in the contract state like you're doing in this version of the PR, at least before it's spent. What you suggest about getting the tx confirmations after it is spent might be alright unless the tx was replaced.
client/asset/eth/eth.go
Outdated
// Or maybe it'd be better to set confs to some constant, large, round | ||
// number so it doesn't look dumb in logs. |
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.
Yah, maybe like 32 or something?
There is a new ETH functionality that would allow us to have ETH redemptions for accounts without any ETH: Would be cool to have it in the v1 contract. |
It might also allow for removal of additional "approve" step since multiple user actions can be executed within single transaction (from https://youtu.be/iLf8qpOmxQc?t=2028). But who knows how long it will take to get this Account Abstraction design working, I bet it's 1+ year down the road. |
6860081
to
9f934c8
Compare
9f934c8
to
cd4866c
Compare
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.
require(!secretValidates(record, v.secretHash), "swap already redeemed"); | ||
|
||
// Is it already refunded? | ||
require(record != RefundRecord, "swap already refunded"); |
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.
require(blockNum > 0 && blockNum <= block.number, "swap not active");
If this check passes then record != RefundRecord
will definitely be true.
// contractKey generates a key hash which commits to the contract data. The | ||
// generated hash is used as a key in the swaps map. | ||
function contractKey(Vector calldata v) public pure returns (bytes32) { | ||
return sha256(bytes.concat(v.secretHash, bytes20(v.initiator), bytes20(v.participant), bytes32(v.value), bytes8(v.refundTimestamp))); |
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.
return sha256(bytes.concat(v.secretHash, bytes20(v.initiator), bytes20(v.participant), bytes32(v.value), bytes8(v.refundTimestamp))); | |
return keccak256(abi.encode(v)); |
I'm pretty sure keccak256 will be cheaper, and maybe abi.encode would also be cheaper than the bytes.concat.
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.
I was originally using abi.encodePacked
, but we decided to use bytes.encode
because of some ambiguity in the implementation of abi encoding, iirc. I can't find the convo. I think it was on Matrix.
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.
I still need to investigate keccak hash
server/asset/eth/coiner.go
Outdated
LockTime: uint64(init.LockTime.Unix()), | ||
} | ||
|
||
// if value < bc.vector.Value { |
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.
Should these checks be copied below to use with both versions?
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.
The value check is moved and the others are completely pointless since we just pulled (v0) or validated (v1) the data on-chain. This is also not the purview of the backend, which reports chain data to the swapper for validation.
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.
Glad you rebased all of this. The gas savings on everything but Refund is substantial. I think I have a valid comment about the RefundRecord being used as the Secret and maybe some unintended things can happen with that.
// func (c *contractorV1) record(v *dexeth.SwapVector) (r [32]byte, err error) { | ||
// abiVec := dexeth.SwapVectorToAbigen(v) | ||
// ck, err := c.ContractKey(&bind.CallOpts{From: c.acctAddr}, abiVec) | ||
// if err != nil { | ||
// return r, fmt.Errorf("ContractKey error: %v", err) | ||
// } | ||
// return c.Swaps(&bind.CallOpts{From: c.acctAddr}, ck) | ||
// } |
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.
Ok to remove?
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.
I though this might come in handy in an emergency for troubleshooting. The underlying Swaps
method is generated automatically by abigen anyway.
// From: , | ||
To: init.Participant, |
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.
Leaving from out on purpose? Also here is another example of To as Participant, which I think it correct.
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.
We simply don't have this information at this point, and luckily the server doesn't need it. I wasn't sure what else to do but leave it empty.
"eth": 0, | ||
"usdc.eth": 0, | ||
"polygon": 0, | ||
"usdc.polygon": 0, | ||
"wbtc.polygon": 0, | ||
"weth.polygon": 0 |
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.
This is annoying, but until we launch contracts, you'll have to delete these overrides to test v1 contracts.
804e51b
to
3a56eb2
Compare
All v1 contracts launched and gases validated on mainnet, and contracts launched for all available tokens on testnet. |
// else if (uint256(record) < block.number && sha256(record) != contract.secretHash): | ||
// contract is initiated and redeemable by the participant with the secret. |
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.
Could we use 20 bytes here for the the token address and the remaining 12 for the block number? Then we wouldn't need to create a new contract for each token.
Implements the version 1 contracts for ethereum and tokens. Based on feedback in decred#1426, everything is now encoded in the "contract data". This "contract data", is the msgjson.Init.Contract -> msgjson.Audit.Contract -> MatchMetaData.Proof.CounterContract, AuditInfo.Contract -> Redemption.Spends.Contract. A few new terms are introduced to differentiate various encodings and data sets. The aforementioned contract data did encode a version and a secret hash. It now encodes a version and a "locator", which is a []byte whose length and content depend on the version. For version 0, the locator is still just the secretHash[:]. For v1, the locator encodes all of the immutable data that defines the swap. This immutable data is now collected in something called a "vector" (dexeth.SwapVector). For version 0, some vector data is stored on-chain indexed by the secret hash. For version 1, all vector data is encoded in the locator. I've also made an effort to standardize the use of status/step, and eliminated the use of ambiguous "ver" variables throughout. A "status" is now the collection of mutable contract data: the step, the init block height, and the secret. The status and vector collectively fully characterize the swap. client/asset/eth: New contractV1 and tokenContractorV1 interfaces. To avoid duplication, the ERC20 parts of the tokenContractors are separated into a new type erc20Contractor that is embedded by both versions. Getters for status and vector are added in place of the old method "swap". assetWallet and embedding types are updated to work with the new version-dependent locators and the status and vector model. dex/networks/{eth,erc20}: New contracts added. New methods for dealing with locators. Simnet entries added for eth and dextt.eth in the ContractAddresses and Tokens maps. txDataHandler interace is replaced with versioned package-level functions. server/asset/eth: Server is fully switched to version 1. No option to use version 0. Translation to new version was straightforward, with one notable difference that we can no longer get a block height from the contract once the swap is redeemed.
4453f17
to
f7c5296
Compare
Switched up to using a single contract for eth and tokens. Non-live unit tests are passing. Getgas utility is working. But not tested beyond that. This should be close to the final form though. |
bytes32 secret; | ||
} | ||
|
||
function secretValidates(bytes32 secret, bytes32 secretHash) public pure returns (bool) { |
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.
nit: I would prefer isSecretValidated
for readabilty
Replaces #1426. Not tested with simnet-trade-tests (#2037) or loadbot, so leaving in draft for now. Need to get some reviews done.