Skip to content

Commit

Permalink
feat: sign typed data with gcp kms (#2)
Browse files Browse the repository at this point in the history
* feat: sign typed data with kms

* chore: change ts build

* chore: change ts build

* fix: using hex hash of typed data

* feat: added recover typed sig
  • Loading branch information
fforbeck committed Oct 28, 2021
1 parent feadb8d commit a77b11f
Show file tree
Hide file tree
Showing 11 changed files with 1,030 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
@@ -1,3 +1,4 @@
coverage
dist
node_modules
node_modules
__snapshots__
9 changes: 3 additions & 6 deletions .eslintrc
Expand Up @@ -12,18 +12,15 @@
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
".ts"
]
}
}
},
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
"**/*.ts"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand All @@ -36,7 +33,7 @@
"no-undef": "off",
"no-unused-vars": "off",
"no-restricted-globals": "off"
}
},
}
],
"rules": {
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

# Jest tests
__snapshots__

0 comments on commit a77b11f

Please sign in to comment.