Skip to content

Commit

Permalink
docs: ✏️ update readme and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
foxgem committed Apr 23, 2023
1 parent 986dade commit 5b183b8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**If you need a wallet or singer in your backend server, this project is for you.**

It aims to create an [ethers.Signer](https://docs.ethers.org/v5/api/signer/#Signer) from third party secret storages. Currently, it supports:
It aims to create an [ethers.Signer](https://docs.ethers.org/v5/api/signer/#Signer) from the third party secret storages. Currently, it supports:

- Private key
- This is only for testing purposes, not recommend in production environments.
Expand Down
38 changes: 31 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"name": "@dteam/safe-signer",
"version": "0.1.0",
"description": "Get ethers.Signer from multiple resources",
"author": "dteam",
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=16"
},
"description": "Creating an ethers.Signer from the third party secret storages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"license": "MIT",
"keywords": [],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "c8 ava",
"lint": "gts lint",
Expand Down Expand Up @@ -60,5 +61,28 @@
"html",
"json-summary"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/DTeam-Top/safe-signer.git"
},
"bugs": {
"url": "https://github.com/DTeam-Top/safe-signer/issues"
},
"homepage": "https://github.com/DTeam-Top/safe-signer/blob/main/README.md",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"ethereum",
"web3",
"wallet",
"ethers",
"security"
],
"tags": [
"typescript",
"tools"
]
}

0 comments on commit 5b183b8

Please sign in to comment.