3a9dfd968b
* NTT/Acct/Node: Guardian changes * Add per-emitter enforcement * complete ntt accountant integration tests and run in parallel * Minor tweaks * Increase delay in tests * fix accountant ci check * Add CI AR address * update prefixes * increase timeout * update ntt transfer wire format * Code review rework from PR #3800 * Up tilt timeout * Allow NTT accountant without base accountant * Define known automatic relayer emitters * Code review rework --------- Co-authored-by: Evan Gray <battledingo@gmail.com> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
ci-config.js | ||
jestconfig.json | ||
package-lock.json | ||
package.json | ||
tsconfig-cjs.json | ||
tsconfig.json | ||
tslint.json |
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