Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Bakery Swap committed Sep 13, 2020
0 parents commit 904f7dc
Show file tree
Hide file tree
Showing 32 changed files with 52,945 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sol linguist-language=Solidity
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.idea
6 changes: 6 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extension": ["ts"],
"spec": "./test/**/*.spec.ts",
"require": "ts-node/register",
"timeout": 12000
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@BakeryProject:registry=https://npm.pkg.github.com
17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"semi": false,
"singleQuote": true,
"printWidth": 120,
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"explicitTypes": "always"
}
}
]
}
24 changes: 24 additions & 0 deletions .waffle.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"compilerVersion": "./node_modules/solc",
"outputType": "all",
"compilerOptions": {
"outputSelection": {
"*": {
"*": [
"evm.bytecode.object",
"evm.deployedBytecode.object",
"abi",
"evm.bytecode.sourceMap",
"evm.deployedBytecode.sourceMap",
"metadata"
],
"": ["ast"]
}
},
"evmVersion": "istanbul",
"optimizer": {
"enabled": true,
"runs": 999999
}
}
}
2 changes: 2 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ignore-scripts true
"@BakeryProject:registry" "https://npm.pkg.github.com"
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Bakery Swap Core


# Local Development

The following assumes the use of `node@>=10`.

## Install Dependenciess

`yarn`

## Compile Contracts

`yarn compile`

## Run Tests

`yarn test`
Loading

0 comments on commit 904f7dc

Please sign in to comment.