https://github.com/dodoex/dodo-route-contract
https://github.com/dodoex/dodo-route-contract
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dodoex/dodo-route-contract
- Owner: DODOEX
- Created: 2022-09-20T07:43:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T16:37:17.000Z (6 months ago)
- Last Synced: 2024-11-14T17:33:39.722Z (6 months ago)
- Language: Solidity
- Size: 612 KB
- Stars: 9
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FeeRoute
Main Contract: ./contracts/SmartRoute/DODORouteProxy.sol
DODORouteProxy is a new routeProxy contract with fee rebate to manage all route. It provides three methods to swap, including mixSwap,multiSwap and externalSwap. Mixswap is for linear swap, which describes one token path with one pool each time. Multiswap is a simplified version about 1inch, which describes one token path with several pools each time. ExternalSwap is for other routers like 0x, 1inch and paraswap. Dodo and front-end users could take certain route fee rebate from each swap. Wherein dodo will get a fixed percentage, and front-end users could assign any proportion through function parameters.
Inheritaged a template using Foundry && HardHat architecture.
We use hardhat test.## Motivation
With this new architecture, we can get:
- Unit tests written in solidity
- Foundry's cast
- Integration testing with Hardhat
- Hardhat deploy & verify
- Typescript### Foundry
**Foundry is a blazing fast, portable and modular toolkit for Ethereum
application development written in Rust.**Foundry consists of:
- [**Forge**](./forge): Ethereum testing framework (like Truffle, Hardhat and
Dapptools).
- [**Cast**](./cast): Swiss army knife for interacting with EVM smart contracts,
sending transactions and getting chain data.**Need help getting started with Foundry? Read the [📖 Foundry
Book][foundry-book] (WIP)!**[foundry-book]: https://onbjerg.github.io/foundry-book/
### Hardhat
Hardhat is an Ethereum development environment for professionals. It facilitates performing frequent tasks, such as running tests, automatically checking code for mistakes or interacting with a smart contract.
On [Hardhat's website](https://hardhat.org) you will find:
- [Guides to get started](https://hardhat.org/getting-started/)
- [Hardhat Network](https://hardhat.org/hardhat-network/)
- [Plugin list](https://hardhat.org/plugins/)## Directory Structure
```
integration - "Hardhat integration tests"
lib - forge-std: "Test dependency"
scripts - "hardhat deploy scripts"
contracts - "Solidity contract"
test - "forge tests"
.env.example - "Expamle dot env"
.gitignore - "Ignore workfiles"
.gitmodules - "Dependecy modules"
.solcover.js - "Configure coverage"
.solhint.json - "Configure solidity lint"
foundry.toml - "Configure foundry"
hardhat.config.ts - "Configure hardhat"
package.json - "Node dependencies"
README.md - "This file"
remappings.txt - "Forge dependcy mappings"
slither.config.json - "Configure slither"
```## Installation
### Foundry
First run the command below to get `foundryup`, the Foundry toolchain installer:
```sh
curl -L https://foundry.paradigm.xyz | bash
```If you do not want to use the redirect, feel free to manually download the
foundryup installation script from
[here](https://raw.githubusercontent.com/gakonst/foundry/master/foundryup/install).Then, in a new terminal session or after reloading your `PATH`, run it to get
the latest `forge` and `cast` binaries:```sh
foundryup
```Advanced ways to use `foundryup`, and other documentation, can be found in the
[foundryup package](./foundryup/README.md). Happy forging!### Hardhat
`npm install` or `yarn`
## Commands
```sh
Scripts available via `npm run-script`:
compile
npx hardhat compile
coverage
npx hardhat coverage --solcoverjs .solcover.js
deploy
npx hardhat run scripts/deploy.ts
integration
npx hardhat test
verify
npx hardhat verify
```
```sh
Hardhat Commands
integration tests
yarn integration
coverage
yarn coverage
```
```sh
Foundry Commands
unit tests
forge test
coverage
forge coverage
```
## Adding dependencyPrefer `npm` packages when available and update the remappings.
### Example
install:
`yarn add -D @openzeppelin/contracts`remapping:
`@openzeppelin/contracts=node_modules/@openzeppelin/contracts`import:
`import "@openzeppelin/contracts/token/ERC20/ERC20.sol";`