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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@synofinance/solana-sdk

v0.0.13

Published

SYNO Finance Solana SDK.

Downloads

5

Readme

Solana TypeScript SDK

It contains IDL types generated from Solana spoke program.

Install and quick check

Install

yarn install

Build and quick check

Build:

yarn run clean
yarn run build

Quick check:

This will execute a set of transactions against the program with the ID set in the IDL.

These are essentially smoke tests; they will do nothing significant and fail only within the handler body.

This means that the entire Anchor instruction accounts validation has passed, which is the purpose of these tests.

yarn run start-test

Howto import to project:

Import as github dependency:

Main repo:

"solana-sdk": "git+https://github.com/SynonymFinance/solana-sdk"

If specific commit hash is required:

"solana-sdk": "git+https://github.com/SynonymFinance/solana-sdk#0e01163c0e046c9253c3a976bf6f28e338010091"

Releasing a New Version of the Package. NOTE : ONLY FOR ETHERS-V6

Prerequisites

  1. You must have an NPM account. (https://www.npmjs.com/)
  2. You must have the necessary permissions to publish the package.
  3. You must have the latest version of the package.

Step 1: Update the Version

  1. Open the package.json file.
  2. Update the "version" field according to Semantic Versioning:
    • MAJOR.MINOR.PATCH (e.g., change from 1.0.0 to 1.1.0 or 1.0.1).

**Step 2: Login to npm repository

yarn login --scope synofinance 

You will be asked to provide username and email used during registration.

Later when running yarn publish --access public you will be asked for password.

Step 2: Build the Package

Run the following command to build the package:

yarn run build

Step 3: Create a Package Archive File

Generate the .tgz package file by running the following command:

yarn pack

Step 4: Publish the Package

Release the package to the public registry:

yarn publish --access public

Step 5: Verify the Release

1.Go to the package's NPM page to confirm the version update. 2.Verify that the package is available and that everything was published successfully.