@magicblock-labs/ephemeral-rollups-sdk 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @magicblock-labs/ephemeral-rollups-sdk
|
|
2
|
+
|
|
3
|
+
TypeScript helpers for preparing and routing transactions to Ephemeral Rollups on Solana.
|
|
4
|
+
|
|
5
|
+
Quickstart and integration guide:
|
|
6
|
+
https://docs.magicblock.gg/pages/get-started/how-integrate-your-program/quickstart
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
npm install @magicblock-labs/ephemeral-rollups-sdk
|
|
11
|
+
# or
|
|
12
|
+
yarn add @magicblock-labs/ephemeral-rollups-sdk
|
|
13
|
+
|
|
14
|
+
## Usage (basic)
|
|
15
|
+
|
|
16
|
+
import { MagicRouter } from "@magicblock-labs/ephemeral-rollups-sdk";
|
|
17
|
+
|
|
18
|
+
// See full examples and docs in the Quickstart link above.
|