-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: setup typescript * feat: update errors to .ts * feat: update gm test to .ts * feat: update prettierrc to typescript * feat: include eslintrc * feat: start gm.ts * feat: add and test gm constructor * style: lint * feat: add webpack bundling and lint on precommit * feat: use ganache core for websocket server * feat: set accounts and tx sender * feat: use colon in npm script commands * feat: unlock account * feat: add contract library installer binary * fix: pass array into contract installer * docs: add instructions for installer * docs: update test command * feat: remove and ignore build dir * feat: implement execute * feat: test execute and unlock account without password * feat: update test script and use refactored ganache * feat: update build scripts * fix: replace contracts with contract-library * feat: add gm ping * feat: add maker protocol * feat: use caip networks and update errors * refactor: move execute method and set default from * feat: add mint dai convenience method * fix: set default from * fix: get address by contract name * fix: return status from mintDai * fix: throw if contract for method is not installed * refactor: install protocols instead of individual contracts * feat: add protocols to gm * fix: add preset protocols to gm instances * fix: use call for constant functions * fix: import from utils instead of contracts * feat: update license to 2021 * feat: update package json * feat: throw if websocket is not open * fix: update mintCErc20 * feat: remove truffle config * test: update tests * feat: add byte length util * fmt: clean comments * feat: clean up package scripts and ganache dep * fmt: use 2 spaces for package.json and ignore from prettier * fix: update package lock * feat: log websocket in debug mode and update test * feat: clean up types * feat: update release it and delete whitespace * feat: update types and lint * fix: update godmode-ganache-core without branch * feat: update package lock
- Loading branch information
1 parent
3e86239
commit 2f85134
Showing
76 changed files
with
16,768 additions
and
3,285,310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier/@typescript-eslint', | ||
'plugin:prettier/recommended', // Display prettier errors as ESLint errors. Must be last in the extends array. | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
node_modules | ||
.env | ||
dist | ||
build | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
build | ||
contracts | ||
node_modules | ||
dist | ||
package*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"endOfLine": "lf" | ||
"trailingComma": "es5", | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"endOfLine": "lf" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
require('../dist/bin/godmode.js'); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.