VegeBun-csj / ssv-keys

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SSV Keys

GitHub GitHub Workflow Status GitHub package.json version

GitHub commit activity GitHub contributors GitHub last commit

GitHub package.json dynamic GitHub package.json dynamic

Discord

Important dependencies:

  • GitHub package.json dependency version (prod)
  • GitHub package.json dependency version (prod)
  • GitHub package.json dependency version (prod)
  • GitHub package.json dependency version (prod)
  • GitHub package.json dependency version (prod)
  • GitHub package.json dependency version (prod)

Library and CLI to work with the ETH keystore file:

  1. Parse the private key using the keystore password
  2. Use the private key to get shares for operators
  3. Build the payload for the transaction

OPTION 1: Running an Executable (Recommended route)

If you want to run a compiled version (easier option then CLI)

  1. Go to the releases section: https://github.com/bloxapp/ssv-keys/releases
  2. Select the latest release for the specific version of the CLI: vX.Y.Z-v1 - for the first version of the contract, vX.Y.Z-v2 - for second etc. Example: v0.0.1-v1 or v0.0.1-v2.
  3. Download the native executable for your operating system:
    • ssv-keys-lin - for Ubuntu Linux
    • ssv-keys-mac - for MacOS
    • ssv-keys.exe - for Windows
  4. Open terminal and change the directory to where you downloaded the executable. For instance, on MacOS you can:
    cd ~/Downloads
  5. (Mac and Linux) Make sure that the executable has permissions to run by running:
    chmod 777 ./ssv-keys-mac
  6. Now you can run it:
    ./ssv-keys-mac
  7. If your operating system prevents you from running the executable you can open it from the file manager (Finder in case of MacOS), right click on it, and click the Open menu. Once open click the Open or allow button when you are asked to do so. After this go back to the console and try to run it again.

Option 2: Running from the CLI

Installation

This installation requires NodeJS on your machine. You can download it here.

Once you have installed NodeJS, follow instructions:

git clone https://github.com/bloxapp/ssv-keys.git
cd ssv-keys
npm install -g yarn
yarn install
yarn cli --help

Running from repository

  • For regular CLI usage you will be running the command as: yarn cli ...
  • Follow installation instructions.

Help

Help on available actions:

yarn cli --help

Help on a specific action:

yarn cli <action> --help

Example

Step 1: Build the shares:

Input parameters:

  • keystore (ks) = Path to keystore json file
  • password (ps) = Keystore password
  • operators (op) = Comma-separated list of the operator keys
  • output-format (of) = Format of the result (abi or raw)
yarn cli shares --keystore=src/lib/EthereumKeyStore/__tests__/test.keystore.json --password=testtest --operators=...,...,... --output-format=raw

Output: Shares and path to file holding the shares

Step 2: Build the transaction payload:

Input parameters:

  • keystore (ks) = Path to keystore json file
  • password (ps) = Keystore password
  • operators (op) = Comma-separated list of the operator keys
  • operator-ids (oid) = Comma-separated list of the operator ids (same sequence as operators)
  • ssv-amount (ssv) = SSV Token amount fee required for this transaction in Wei
yarn cli shares --private-key=... -op=...,...,...,... --output=./shares.json

Output: Transaction payload and path to file holding the transaction payload

Integration in your projects

Node Project

To run an example of a NodeJS project containing all the code snippets to build the share and transaction payload, simply follow these instructions!

cd examples/node
yarn install

To run a JavaScript example:

yarn start:js

To run a TypeScript example:

yarn start:ts

Browser project (web application)

Go to the example folder and then install all the dependencies:

cd examples/browser
yarn install

Start the web app:

yarn start

Open the developer console to see how it works in a browser environment.

Development

Run the CLI as a TypeScript executable:

yarn dev:cli ...

Run the CLI as a JavaScript compiled executable:

yarn cli ...

Lint

yarn lint

Testing

yarn test

In watch mode during development

yarn test --watchAll

Building

Build TypeScript into JavaScript

yarn build

Build for NodeJs using esbuild

yarn esbuild

Build everything

yarn build-all

TODO

Authors

License

MIT License

About

License:MIT License


Languages

Language:HTML 37.3%Language:TypeScript 32.7%Language:CSS 28.6%Language:JavaScript 1.3%Language:Shell 0.0%