0.2.9 • Published 11 months ago

@goat-sdk/wallet-aptos v0.2.9

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Aptos Wallet for GOAT

Installation

npm install @goat-sdk/wallet-aptos
yarn add @goat-sdk/wallet-aptos
pnpm add @goat-sdk/wallet-aptos

Usage

import {
    Account,
    Aptos,
    AptosConfig,
    Ed25519PrivateKey,
    Network,
} from "@aptos-labs/ts-sdk";

const aptosClient = new Aptos(
    new AptosConfig({
        network: Network.TESTNET,
    })
);

const aptosPrivateKey = process.env.APTOS_PRIVATE_KEY;
const aptosAccount = Account.fromPrivateKey({
    privateKey: new Ed25519PrivateKey(aptosPrivateKey),
});

const tools = await getOnChainTools({
    wallet: aptos({
        aptosClient,
        aptosAccount,
    }),
});
0.2.9

11 months ago

0.2.8

11 months ago

0.2.7

12 months ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago