Skip to content
This repository has been archived by the owner on Apr 27, 2022. It is now read-only.

gnosis/hdnode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ The team that worked on this project has spun out of Gnosis and continues development on a forked repo (01-04-2022) which is available here https://github.com/cowprotocol/hdnode

HD Node

Wraps an Ethereum node RPC endpoint with account managment.

This allows, for example, to run a local node RPC endpoint that proxies all requests to say, Infura, while internally handing account-specific requests like eth_sendTransaction.

Validation

The service provides some very basic validation on the signed data:

  1. The chain ID specified in the transaction and typed data must match the node's chain ID
  2. The nonce specified in the transaction is only the next nonce. This means you can only sign one transaction at a time, but is important for foward secrecy.

Additionally, the service has a concept of a "validator" - a Lua module that gets called on every signature operation to validate whether or not the signature should be allowed. It can perform arbitrary logic. For an example, take a look at the CowSwap sample validator.

TODO

  • CI
  • Increase test coverage - its pretty poor ATM
  • Optionally record signatures to a database instead of just logging them
  • General project cleanup - it was done quite quickly

About

Wraps an Ethereum node RPC endpoint with account managment

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published