wormhole/spydk/js
kev1n-peters e90146b321
Update elliptic to >= 6.6.1 (#4272)
* Update elliptic to >= 6.6.1

See: https://github.com/indutny/elliptic/security/advisories/GHSA-vjh7-7g9h-fjfh

* update elliptic everywhere
2025-02-27 10:09:10 -05:00
..
src NTT / Acct / Node: Guardian support (#3815) 2024-03-08 07:52:12 -06:00
.gitignore spydk: initial release 2021-12-08 23:09:29 +00:00
CHANGELOG.md sdk/js: publish separate proto packages 2022-07-13 10:04:23 -04:00
LICENSE staging/algorand: apply global Apache 2 license 2022-02-05 09:30:28 -05:00
README.md rename dev.v2 to main 2022-11-29 10:43:07 -05:00
ci-config.js Tilt tests (#688) 2022-02-08 03:55:10 -05:00
jestconfig.json spydk: initial release 2021-12-08 23:09:29 +00:00
package-lock.json Update elliptic to >= 6.6.1 (#4272) 2025-02-27 10:09:10 -05:00
package.json Update elliptic to >= 6.6.1 (#4272) 2025-02-27 10:09:10 -05:00
tsconfig-cjs.json spydk: initial release 2021-12-08 23:09:29 +00:00
tsconfig.json spydk: initial release 2021-12-08 23:09:29 +00:00
tslint.json spydk: initial release 2021-12-08 23:09:29 +00:00

README.md

Wormhole Spy SDK

Note: This is a pre-alpha release and in active development. Function names and signatures are subject to change.

Wormhole Spy service SDK for use with @certusone/wormhole-sdk

Usage

import {
  createSpyRPCServiceClient,
  subscribeSignedVAA,
} from "@certusone/wormhole-spydk";
const client = createSpyRPCServiceClient(SPY_SERVICE_HOST);
const stream = await subscribeSignedVAA(client, {});
stream.on("data", ({ vaaBytes }) => {
  console.log(vaaBytes);
});

Also see integration tests