Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Client tools can then:
Install from npm:

```sh
npm install hyperbalance
npm install @permaweb/hyperbalance
```

## Basic Usage
Expand All @@ -43,7 +43,7 @@ import {
HYPERBEAM_DEFAULT_LEDGER_ID,
HyperbalanceClient,
discoverHyperbeamAoBundlerProfile,
} from "hyperbalance"
} from "@permaweb/hyperbalance"

const client = new HyperbalanceClient({
nodeUrl: "https://hyperbeam.example.com",
Expand Down Expand Up @@ -110,7 +110,7 @@ import {
HyperbalanceClient,
arweaveAddressFromJwk,
createAoCoreRequestSender,
} from "hyperbalance"
} from "@permaweb/hyperbalance"

const nodeUrl = "https://hyperbeam.example.com"
const wallet = JSON.parse(process.env.ARWEAVE_WALLET_JSON!)
Expand Down
4 changes: 2 additions & 2 deletions examples/ensure-ao-credit.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { AoTokenTransferAdapter } from "hyperbalance/adapters/ao"
import { AoTokenTransferAdapter } from "@permaweb/hyperbalance/adapters/ao"
import {
DEFAULT_AO_TOKEN_ID,
HYPERBEAM_DEFAULT_LEDGER_ID,
HyperbalanceClient,
discoverHyperbeamAoBundlerProfile,
} from "hyperbalance"
} from "@permaweb/hyperbalance"

const client = new HyperbalanceClient({
nodeUrl: "https://hyperbeam.example.com",
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "hyperbalance",
"name": "@permaweb/hyperbalance",
"version": "0.1.0",
"description": "Client helpers for funding AO-backed HyperBEAM local ledgers.",
"type": "module",
Expand Down