Skip to content

Commit

Permalink
#4 - Worker safe polling and reconstruction (#6)
Browse files Browse the repository at this point in the history
* adds worker safe polling and reconstruction

* fixes safe watch file error

* adds service layer and refactors worker

* fixes safe watch issues
  • Loading branch information
koshikraj authored Jan 4, 2022
1 parent 03317f5 commit 9fd07b4
Show file tree
Hide file tree
Showing 23 changed files with 37,898 additions and 36,223 deletions.
72,855 changes: 36,978 additions & 35,877 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@safient/cli",
"version": "0.1.0-alpha",
"version": "0.1.1-alpha",
"description": "Safient CLI tool to run a Safien worker and interact with the safes on Safient protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -19,7 +19,7 @@
"build": "npm run lint && ./node_modules/.bin/tsc -p tsconfig.json",
"prepare": "npm run format && npm run lint && npm run build",
"start": "npm run prepare && node ./dist/index.js start",
"test": "jest --passWithNoTests --detectOpenHandles --verbose",
"test": "mocha --timeout 120000",
"test:watch": "jest --watch --passWithNoTests --detectOpenHandles --verbose"
},
"bin": {
Expand All @@ -33,18 +33,24 @@
},
"dependencies": {
"@awaitjs/express": "^0.8.0",
"@safient/core": "^0.1.3-alpha",
"@ethersproject/providers": "^5.4.4",
"@safient/core": "^0.1.7-alpha",
"bip39": "^3.0.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.0",
"ethereumjs-wallet": "^1.0.1",
"ethers": "5.4.4",
"ethers": "^5.4.3",
"express": "4.17.1",
"inquirer": "^8.2.0",
"log-symbols": "^5.0.0",
"mocha": "^9.1.3",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 9fd07b4

Please sign in to comment.