New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

hyli

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyli

Hyli js/ts SDK

latest
Source
npmnpm
Version
0.4.1
Version published
Weekly downloads
1
-96.97%
Maintainers
3
Weekly downloads
 
Created
Source

Hyli js SDK

Usage

import { Blob, blob_builder, BlobTransaction } from "hyli";

const transfer: Blob = blob_builder.token.transfer("alice@mmid", "usdc", 4, null);

const blobs = [transfer];

const { nonce, signature, account } = signBlobs(blobs); // Function defined in you project

const verifyIdentity: Blob = blob_builder.metamask.verifyIdentity(nonce, signature);

const blobTx: BlobTransaction = {
    identity: account,
    blobs: [verifyIdentity, ...blobs],
};

You have a usage example of the http clients in test.ts you can run with

bun test.ts

Build

bun run build

Development

To build whenever you make a change:

bun run watch

To use you local copy of the repo in another project, run here:

bun link

And in your project run:

bun link hyli

FAQs

Package last updated on 03 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts