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

sumer-sdk

v6.0.3

Published

SDK that allows observing EVM-based provider requests

Downloads

14

Readme

1. Introduction

Sumer is the easiest way to integrate monitoring and get visibility to your dApp activity. It has been designed as an Observer Pattern-based SDK that allows users to observe Web3 Providers execution. Integration is done with just a few lines of code and directly into the dApp frontend

2. SDK Initialization

2.1. Prerequisites

To visualize the monitored activity, a Sumer dApp key is required. Go to Sumer App and complete the sign up process to create your Sumer dApp and get the key.

2.2. Installation

Add the sumer-sdk package to your project

npm i sumer-sdk

or

yarn add sumer-sdk

2.3. Initialization

Initialize the SumerSDK

import { Sumer } from 'sumer-sdk'

Sumer.init({ dappKey: 'YOUR_DAPP_KEY' })

3. SDK Integration

3.1. Integration with Web3 Libraries

The SDK currently has full support on Wagmi, Ethers and Web3-React Once integrated, all transactional activity will be observed and available for monitoring in the Sumer App

For Ethers and Web3-React integrations, once the SDK is initialized, you are set to go!

Wagmi Integration

The developer uses the wagmi.sh library as usual, no more software modifications are required

Client Integration

import { Sumer } from 'sumer-sdk'

const { chains, provider, webSocketProvider } = configureChains(
  [mainnet],
  [publicProvider()],
)

const client = createClient({
  autoConnect: true,
  connectors: [
    new MetaMaskConnector({ chains }),
  ],
  provider: Sumer.observe(provider),
  webSocketProvider: Sumer.observe(webSocketProvider),
})

<WagmiConfig client={client}>
  <YourDappComponents />
</WagmiConfig>

Furthermore, if you want to observe your contracts, you can do it as follows:

Contract Integration

import { Sumer } from 'sumer-sdk'

const contract = Sumer.contract(address, abi, chainId, signerOrProvider)

// use the contract instance as usual
const tx = contract.myFunction(...)

3.2. Custom Observers

The SDK allows the developer to create a customized observer targeting the desired object

import { Sumer, Observer, TargetExecution } from 'sumer-sdk'

class CustomObserver extends Observer {
  public async inspect(execution: TargetExecution): Promise<void> {
    // use execution object as needed
  }
}

const client = createClient({
  autoConnect: true,
  connectors: [
    new MetaMaskConnector({ chains }),
  ],
  provider: Sumer.observe(provider, [new CustomObserver()]),
})

4. Contact

If you have any trouble integrating the SDK or visualizing the monitored activity, do not hesitate to contact the developers team. Also contact us for any features/support that you would like to request. General Contact - [email protected]

Developers Team - [email protected] Twitter Profile - twitter

LinkedIn Profile - linkedin Sumer Website - website GitHub Repository - repository

Documentation - documentation

5. License

Distributed under the GNU GENERAL PUBLIC LICENSE. See LICENSE for more information.