Skip to content

Commit

Permalink
feat: Add bend exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
akashiceth committed Jun 7, 2022
1 parent 59ccb75 commit 448ecb4
Show file tree
Hide file tree
Showing 104 changed files with 7,290 additions and 4,432 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage*
gasReporterOutput.json
typechain
lib/ds-test
.history
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

@0xShisui @0xJurassicPunk
@akashiceth
2 changes: 0 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,3 @@ jobs:
run: yarn compile:force
- name: Run TypeScript/Waffle tests
run: yarn test
- name: Run Solidity/Forge tests
run: forge test
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ abis/

# Others
lib

storage_layout
out.html
.history/*
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage*
gasReporterOutput.json
typechain
lib/ds-test
.history
7 changes: 6 additions & 1 deletion .release-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
commitMessage: "build: Release v${version}",
requireUpstream: false,
pushRepo: "upstream", // Push tags and commit to the remote `upstream` (fails if doesn't exist)
requireBranch: "master", // Push commit to the branch `master` (fail if on other branch)
requireBranch: "main", // Push commit to the branch `master` (fail if on other branch)
requireCommits: true, // Require new commits since latest tag
},
github: {
Expand All @@ -15,4 +15,9 @@ module.exports = {
hooks: {
"after:bump": "yarn compile:force",
},

npm: {
publish: false,
skipChecks: true,
},
};
2 changes: 1 addition & 1 deletion .solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module.exports = {
silent: true,
measureStatementCoverage: true,
measureFunctionCoverage: true,
skipFiles: ["interfaces", "test"],
skipFiles: ["interfaces", "test", "interceptors/interfaces"],
configureYulOptimizer: true,
};
5 changes: 3 additions & 2 deletions .solhint.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["error", "^0.8.0"],
"compiler-version": ["error", "0.8.9"],
"func-visibility": [{ "ignoreConstructors": true }],
"func-name-mixedcase": "off",
"not-rely-on-time": "off",
"reason-string": "off",
"var-name-mixedcase": "off"
"var-name-mixedcase": "off",
"avoid-low-level-calls": "off"
}
}
16 changes: 15 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
{
"editor.formatOnSave": true
"editor.formatOnSave": false,
"files.exclude": {
"**/.git": true, // this is a default value
"**/.DS_Store": true, // this is a default value
".history/**": true, // this is a default value
"**/node_modules": true, // this excludes all folders
// named "node_modules" from
// the explore tree

// alternative version
"node_modules": true // this excludes the folder
// only from the root of
// your workspace
},
"solidity.compileUsingRemoteVersion": "v0.8.9+commit.e5eed63a"
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 LooksRare
Copyright (c) 2022 BendDAO

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

This project contains all smart contracts used for the current LooksRare exchange ("v1"). This includes:
This project contains all smart contracts used for the current BendDAO exchange ("v1"). This includes:

- core exchange contract
- libraries
Expand Down
Loading

0 comments on commit 448ecb4

Please sign in to comment.