Contracts for Swap, Swear and Swindle.
Please note that all contracts within this repository are considered highly experimental and may cause loss of funds if used in production.
The master branch only contains the SimpleSwap contract for now. Everything else (full Swap, Swear and Swindle) can be found in the experimental branch.
This is a hardhat project using the truffle plugin (for tests as this used to be truffle-based). You can run tests using yarn test.
yarn
yarn testTo also generate coverage information use yarn coverage instead.
This repo currently uses solhint as linter. It can be called through yarn:
yarn lintTo generate go bindings use
yarn abigenThis will generate the bindings in the bindings/ directory. Suitable versions of solc and abigen have to be installed for this to work.
Alternatively this can also be done through docker:
docker build -t sw3 -f Dockerfile.abigen .
docker run -v $(pwd)/bindings:/sw3/bindings sw3 yarn abigenIn addition to the file from abigen this will also generate a go file that includes the runtime bytecode.
The go bindings are automatically generated on every release git tag and the pushed to the ethersphere/go-sw3-abi repository.
Swap is deployed on the following networks:
| Network | Factory | Token | 
|---|---|---|
| Mainnet | - | 0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb | 
| XDai | 0xc2d5a532cf69aa9a1378737d8ccdef884b6e7420 | 0xdbf3ea6f5bee45c02255b2c26a16f300502f68da (bridged) | 
Swap is deployed on the following testnets:
| Network | Factory | Token | 
|---|---|---|
| Sepolia | 0x0fF044F6bB4F684a5A149B46D7eC03ea659F98A1 | 0x543dDb01Ba47acB11de34891cD86B675F04840db | 
SimpleSwap is a chequebook-style contract with support hard deposits.
The issuer can issue cheques. Those are a signed piece of data containing the swap address, a beneficiary, and a cumulative amount. If the beneficiary wishes to cash the cheque it needs to be sent to the contract using the cashChequeBeneficiary function. Alternatively anyone else can also cash the cheque using cashCheque provided they have a signature from the beneficiary. In that case they might also get a portion of the payout as a fee. If there is not enough liquid balance in the contract part of the cheque might bounce (whether the full cheque was paid out should be verified through the ChequeCashed event). Later the beneficiary can try cashing again to get the remaining amount.
The issuer can lock a certain amount of the balance to a specific beneficiary (increaseHardDeposit) to give solvency guarantees up to the amount of the hard deposit. Decreasing a hard deposit is a two step process: First it needs to be prepared (prepareDecreaseHardDeposit) to start a security delay, which the beneficiary can use to cash the outstanding cheques. Afterwards the deposit can be decreased (decreaseHardDeposit).
The balance not covered by hard deposits can be withdrawn by the issuer at any time.
For signing purposes the chequebook uses EIP-712 Ethereum typed structured data hashing and signing. The EIP712Domain domain name is Chequebook in version 1.0. The chainId field is used, the verifyingContract and salt fields are omitted.
| Field | Type | Description | 
|---|---|---|
| swap | address | the swap contract this is for | 
| beneficiary | address | beneficiary of the cheque | 
| cumulativePayout | uint256 | cumulative amount | 
| Field | Type | Description | 
|---|---|---|
| swap | address | the swap contract this is for | 
| sender | address | the address allowed to submit this cheque | 
| requestPayout | uint256 | the maximum amount that should be paid out | 
| recipient | address | the target of the payment | 
| calleePayout | uint256 | amount of the payout that should go the caller | 
| Field | Type | Description | 
|---|---|---|
| swap | address | the swap contract this is for | 
| beneficiary | address | beneficiary of the hard deposit | 
| decreaseTimeout | uint256 | new timeout | 
SimpleSwap has an accompanying factory contract SimpleSwapFactory. Deploying through the factory guarantees that the SimpleSwap contract was deployed with the correct init code.
Swap is SimpleSwap extended with support for promissory notes. You can find it in the experimental branch.
Swear and Swindle are the contracts for the trial system of sw3. You can find them in the experimental branch.
This repo also contains the contracts and tests for the swarm S3 price oracle.
| Network | Address | 
|---|---|
| XDai | 0x0FDc5429C50e2a39066D8A94F3e2D2476fcc3b85 | 
| Sepolia | 0xe821533d30A4250e50812Aa060EEb2E8Ef3D98f6 | 
The go bindings are automatically generated on every release git tag and the pushed to the ethersphere/go-price-oracle-abi repository.
To release a new stable version, tag the commit without the -rcX suffix.
For example, to release v0.4.0, execute the following command: git tag v0.4.0 && git push origin v0.4.0.
This will generate Golang source code for the smart contracts and publish it to the ethersphere/go-sw3-abi/ repository and https://github.com/ethersphere/go-price-oracle-abi
DONT DO TAGS with RC in it, as currently script is naming the files with those and Bee Node compile cant handle file names with RC in the name.
All deployments and Tests are fully dependant on Hardhat Deploy library https://github.com/wighawag/hardhat-deploy and follow best practices used there
Feel free to use public RPCs but if you want extra security and speed, feel free to use Infura, Alchemy or any other private RPC and add full path with your KEY to .env file
- Run 
yarn hardhat compileto get all the contracts compiled. - Run 
yarn hardhat testto run all the tests. - Configure 
.envfile- Set your 
WALLET_SECRETin the.envfile. - Set your 
INFURA_TOKENin the.envfile. 
 - Set your 
 - To deploy all contracts and set roles:
- Mainnet: 
yarn hardhat deploy --network mainnet - Testnet: 
yarn hardhat deploy --network testnet 
 - Mainnet: