Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit 7922742

Browse files
committed
Update gitignore, add scripts to handle deploying and building
1 parent 695801a commit 7922742

26 files changed

+55853
-9
lines changed

.gitignore

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
node_modules/
2-
build
3-
transpiled
4-
types/generated/
1+
.DS_Store
2+
/node_modules
3+
/transpiled
4+
/types/generated/*
5+
/build
6+
/dist
57

6-
yarn-error.log
8+
### Node ###
79

8-
.DS_Store
10+
# Logs
11+
*.log
12+
/logs
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*

artifacts/index.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { BasicToken } from "./ts/BasicToken";
2+
import { DetailedERC20 } from "./ts/DetailedERC20";
3+
import { ERC20 } from "./ts/ERC20";
4+
import { ERC20Basic } from "./ts/ERC20Basic";
5+
import { Set } from "./ts/Set";
6+
import { SetToken } from "./ts/SetToken";
7+
import { StandardToken } from "./ts/StandardToken";
8+
import { StandardTokenMock } from "./ts/StandardTokenMock";
9+
10+
export {
11+
BasicToken,
12+
DetailedERC20,
13+
ERC20,
14+
ERC20Basic,
15+
Set,
16+
SetToken,
17+
StandardToken,
18+
StandardTokenMock,
19+
};

artifacts/json/BasicToken.json

Lines changed: 2568 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)