# PeakVault

Wax signer library extending transaction signing possibilities by a 3rd party Web-only extension - Peak Vault

# Install package

View PeakVault signer package on npmjs 🡭
https://npmjs.com/package/@hiveio/wax-signers-peakvault

pnpm add @hiveio/wax-signers-peakvault

# Prerequisites

# Usage

import { createHiveChain } from "@hiveio/wax";
import PeakVaultProvider from "@hiveio/wax-signers-peakvault";

const chain = await createHiveChain();

const provider = PeakVaultProvider.for("myaccount", "active");

// Create a transaction using the Wax Hive chain instance
const tx = await chain.createTransaction();

// Perform some operations, e.g. push the vote operation:
tx.pushOperation({
  vote_operation: {
    voter: "alice",
    author: "bob",
    permlink: "example-post",
    weight: 10000
  }
});

// Wait for the keychain to sign the transaction
 await provider.signTransaction(tx);

// broadcast the transaction
await chain.broadcast(tx);