npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fireblocks-typed-raw-ts

v1.0.0

Published

a helper library for typed message and raw mwssage signing with Fireblocks ts-sdk

Downloads

8

Readme

typed-message-raw-sdk

This is an SDK developed to simplify the work with the Fireblocks TypeScript SDK for Typed Message (EIP712) signing, structured data (EIP191) signing, and arbitrary payload (RAW) signing. More information on Typed Messaged and Raw message siging with Fireblocks can be found here: https://developers.fireblocks.com/docs/typed-message-signing-overview

Structure

This SDK exposes two classes, one that handles EIP191 and EIP712 messages signing (FireblocksTypedMessageSigner), and one for arbirtrary messages signing (FireblocksRawMessageSigner).

Installation

Prerequisites

  • Node.js
  • Fireblocks ts-sdk
  • ethers.js

Steps

  • Clone the repository:
git clone https://github.com/fireblocks/typed-message-raw-sdk.git
cd typed-message-raw-sdk
  • Install the dependencies:
npm install

Usage

Enviroment variables

This library supports configuration through environment variables. To manage these variables, we recommend using a '.env' file. Below are the steps to set up and use environment variables in your project.

Create a '.env' file

API_KEY_ID = "";
PATH_TO_SECRET = "";

Initialization

execute the following code to initialize the Fireblocks SDK and the TypedMessageSigner instances:

import { BasePath, Fireblocks } from "@fireblocks/ts-sdk";
import { FireblocksTypedMessageSigner } from "../src/";
require("dotenv").config();

const pathToSecret = process.env.PATH_TO_SECRET;
const secretKey = readFileSync(pathToSecret!, "utf8");
const apiKey = process.env.API_KEY_ID;

const config = {
  apiKey,
  secretKey,
  basePath: BasePath.US,
};

const txParams: TypedTxParameters = {
  vaultAccountId: "<VAULT_ACCOUNT_ID>",
  isTestnet: false,
  txNote: "<YOUR_CUSTOM_NOTE>",
};

const fireblocks = new Fireblocks(config);

const fireblocksTypedSigner = new FireblocksTypedMessageSigner(
  fireblocks,
  txParams
);

execute the following code to initialize the Fireblocks SDK and the RawMessageSigner instances:

import { BasePath, Fireblocks } from "@fireblocks/ts-sdk";
import { FireblocksRawMessageSigner } from "../src/";
require("dotenv").config();

const pathToSecret = process.env.PATH_TO_SECRET;
const secretKey = readFileSync(pathToSecret, "utf8");
const apiKey = process.env.API_KEY_ID;

const config = {
  apiKey,
  secretKey,
  basePath: BasePath.US,
};

const fireblocks = new Fireblocks({
  secretKey: config.secretKey,
  apiKey: config.apiKey,
  basePath: config.basePath,
});

const fireblocksRawSigner = new FireblocksRawMessageSigner(fireblocks);

Once the instances are initialized, you may use the public methods to sign and validate typed and arbitrary messages with Fireblocks TypeScript SDK.