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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks

v1.0.1

Published

Hardhat plugin for Silent Data [Rollup] with Fireblocks integration

Downloads

113

Readme

Silent Data [Rollup] Providers - Hardhat Plugin Fireblocks Package

Table of Contents

Introduction

Custom providers for integrating Silent Data [Rollup] with Hardhat and Fireblocks.

Prerequisites

  • Node.js (version 18 or higher)
  • Hardhat v2
  • npm
  • Basic knowledge of Ethereum and smart contracts

Integration

Hardhat Integration

Installing Hardhat Integration Dependencies

npm install @appliedblockchain/silentdatarollup-core @appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks @nomicfoundation/hardhat-ignition-ethers@0.15.7

Hardhat Integration Example

To integrate the Silent Data [Rollup] Provider with Hardhat, you need to configure your Silent Data network in the hardhat.config.ts file. Below is an example of how to set it up, and note that a silentdata property is needed on the network config to enable it. This property can be an empty object to apply defaults, or you can specify the configurations.

import {
  ApiBaseUrl,
  ASSETS,
  ChainId,
} from '@fireblocks/fireblocks-web3-provider'
import '@nomicfoundation/hardhat-ignition-ethers'
import '@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks'
import { SilentDataSignatureTypeRollupProvider } from '@appliedblockchain/silentdatarollup-core'

const RPC_URL = 'SILENT_DATA_ROLLUP_RPC_URL'
const FIREBLOCKS_API_KEY = 'FIREBLOCKS_API_KEY'

const fireblocksConfig = {
  privateKey: 'FIREBLOCKS_PATH_TO_PRIVATE_KEY',
  apiKey: FIREBLOCKS_API_KEY,
  assetId: ASSETS[ChainId.SEPOLIA].assetId,
  vaultAccountIds: 'FIREBLOCKS_VAULT_ACCOUNT_ID', // Note: Currently, only one vault account can be passed to the configuration.
  chainId: ChainId.SEPOLIA,
  apiBaseUrl: ApiBaseUrl.Sandbox, // If using a sandbox workspace
  rpcUrl: RPC_URL,
}

export default {
  solidity: '0.8.21',
  defaultNetwork: 'sdr',
  networks: {
    hardhat: {},
    sdr: {
      url: RPC_URL,
      fireblocks: fireblocksConfig,
      silentdata: {
        authSignatureType: SignatureType.EIP712, // Optional, defaults to RAW
      },
    },
  },
}

Note: With the above configuration, you can deploy a contract using Hardhat Ignition. For a detailed example, including a sample contract and an Ignition module, please refer to the Hardhat Ignition Getting Started Guide.

To deploy your contract using Hardhat Ignition, run the following command:

npx hardhat ignition deploy ignition/modules/Apollo.ts --network sdr

Troubleshooting

If you encounter any issues, please check the following:

  1. Ensure you're using the correct RPC URL for your desired network.
  2. Verify that your private key is correctly set and has sufficient funds.
  3. Ensure that your token is still active on the SilentData AppChains dashboard.
  4. If using Fireblocks, validate your user and API keys.

License

This project is licensed under the MIT License.

Additional Resources