New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@martiandao/aptos-web3.js

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@martiandao/aptos-web3.js

Web3 SDK For Aptos

  • 3.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-89.29%
Maintainers
1
Weekly downloads
 
Created
Source

Martian aptos-web3.js Docs

Introduction

web3.js library for Aptos

@martiandao/aptos-web3.js is an npm module which allows developers to communicate with the Aptos core code. This module is built on top of Typescript SDK of Aptos.

Import

npm i @martiandao/aptos-web3.js

Supported functions

  1. createWallet: create a new wallet
  2. importWallet: import an existing wallet
  3. airdrop: airdrop test coins into an account
  4. getBalance: get the balance of an account
  5. transfer: transfer coins from one account to another
  6. getSentEvents: get Sent events of an account
  7. getReceivedEvents: get Received events of an account
  8. createNFTCollection: create an NFT collection
  9. createNFT: create an NFT
  10. offerNFT: offer an NFT to a receiver
  11. claimNFT: claim an NFT offered by a sender
  12. cancelNFTOffer: cancel an outgoing NFT offer
  13. getEventStreams: get events of a particular handle struct and field name from the event stream
  14. getTokenIds: get the tokenIds of all the tokens that an account holds
  15. getTokens: get the tokens that an account holds
  16. rotateAuthKey: rotate authentication key

Functions and their args, return values and description

NameArgument: [name: type]ReturnsDescription
createWalletNone"code": string "address key": stringThis method is used to create new wallet. It returns “code” which is a secret phrase and “address key” which is public address of the wallet
importWalletcode: string"address key": stringThis method is used to import wallet from mnemonic/secret phrase. It returns “address key” which is public address of the wallet
airdropcode: string amount: numberNoneThis method is used to add coins in the wallet.
getBalanceaddress: stringbalance: IntegerThis method is used to get available balance of any address. It returns integer
transfercode: string recipient_address: string amount: numberNoneThis method is used to transfer fund from one account to another. It returns Nothing
getSentEventsaddress: stringClick HereThis method is used to fetch sent events done by the wallet. Please hit the url given in the returns field to see what it return
getReceivedEventsaddress: stringClick HereThis method is used to fetch received events to the wallet. Please hit the url given in the returns field to see what it return
createNFTCollectioncode: string name: string description: string uri: stringhash: stringThis method is used to create collection inside the wallet/account. It returns submission hash
createNFTcode: string collection_name: string name: string description: string supply: number uri: stringhash: stringThis method is used to create nft inside collection. It returns submission hash
offerNFTcode: string receiver_address: string creator_address: string collection_name: string token_name: string amount: numberhash: stringThis method is used to offer nft to another address.
claimNFTcode: string sender_address: string creator_address: string collection_name: string token_name: stringhash: stringThis method is used to claim nft offered
getEventStreamaddress: string event_handle_struct: string field_name: stringresponse: objectThis is used to get the events
getTokenIdsaddress: stringtokenIds: list of objectsThis is used to get the token IDs of an account
getEventStreamaddress: stringtokens: list of objectsThis is used to get the tokens of an account
rotateAuthKeycode: string new_auth_key: stringhash: stringThis method is used to rotate the authentication key. The new private/ public key pair used to derive the new auth key will be used to sign the account after this function call completes

Usage Example Wallet

const aptosWeb3 = require('@martiandao/aptos-web3.js');
const walletClient = new aptosWeb3.WalletClient();
async function main() {

    // create new wallet (10 test tokens airdropped by default)
    console.log("\n=== Wallet Creation ===");
    const wallet = await walletClient.createWallet();
    const address = wallet['address key'];
    const signingKey = wallet['code'];

    console.log('Address:', address);
    console.log('Secret recovery phrase:', signingKey);

    // airdrop test tokens
    console.log("\n=== Airdrop ===");
    await walletClient.airdrop(wallet['code'],5000);
    console.log('Balance:', await walletClient.getBalance(address));

    // transfer tokens
    console.log("\n=== Transfer ===");
    const receiver_address = "d27307a2ccf76b4694c2b8f2ddf032fd487dbc82cb32e8b264026a9aee14df8d";
    await walletClient.transfer(signingKey, receiver_address, 420);
    console.log('Balance:', await walletClient.getBalance(address));

    // get wallet transaction history
    console.log("\n=== Wallet history ===");
    const received_history = await walletClient.getReceivedEvents(address);
    const sent_history = await walletClient.getSentEvents(address);
    console.log('Received History:', received_history);
    console.log('Sent History:', sent_history);
}

main()

To Build

npm install
npm run build

Tests

Jest tests allow to test whether each function is working as it supposed to.

npm run test

Keywords

FAQs

Package last updated on 06 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc