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

lasereyes

v0.0.2

Published

![Laser Eyes](http://localhost:3001/lasereyes.png)

Downloads

5

Readme

@omnisat/lasereyes

Laser Eyes

Laser Eyes

React Hooks for Bitcoin

Laser Eyes is a collection of React Hooks containing everything you need to start working with Bitcoin. Laser Eyes makes it easy to "Connect" interface with Bitcoin, Inscriptions, balance information, interact with BRC-20s, and more.

Install

yarn add @omnisat/lasereyes

Usage Overview


import { LaserEyesProvider, createConfig } from '@omnisat/lasereyes'

const config = createConfig({
 ...
})
 
function App() {
  return (
    <LaserEyesProvider config={config}>
      <Profile />
    </LaserEyesProvider>
  )
}

Usage

how to

The following hooks support typed inference:

Read Methods

connect lasereyes.connect()

Get addresses of current account lasereyes.requestAccounts()

Returns testnet or mainnet lasereyes.getNetwork()

Get public key of account lasereyes.getPublicKey()

Get Balance of current account lasereyes.getBalance()

Get All inscriptions lasereyes.getInscriptions()

Get All Tokens lasereyes.getAllBRC20Tokens()

Write Methods

Send Bitcoin lasereyes.sendBTC(toPK, btc_in_sats, ...)

Pay & Inscribe ```lasereyes.pay_inscribe(...)````

Transferable: The amount has been inscribed into one or more TRANSFER inscriptions (can be transferred immediately). Available: The amount that is available as a part of a balance (including both minted and received) but not transferable yet. To spend an available amount, you must first inscribe a certain amount into a TRANSFER inscription.

The transfer Amount can be calculated by the sum of the chosen amounts of TRANSFER inscriptions. If you don’t have enough transferable inscriptions, you will need to inscribe them first.

Once a number of TRANSFER inscriptions are chosen, proceed to send them by asserting an address

sign the tx to send.

Deploy a Inscription lasereyes.deploy(...)

Mint a deployed Inscription lasereyes.mint(...)

Sign a message lasereyes.signMessage(...)

Sign a single PSBT lasereyes.signPsbt(...)

Sign an array of PSBT lasereyes.signPsbts(...)

Events

networkChanged Testnet, mainnet

accountsChanged user changes account pub keys