Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cardano-api

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cardano-api

Node promise wrapper for the Cardano Explorer API

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
increased by700%
Maintainers
1
Weekly downloads
 
Created
Source

cardano-api

Promise wrapper for the Cardano API.

This is not quite finished :/

const { cardano } = require('cardano-api')

const query = {
    path: 'Ae2tdPwU...fQwGpm' // the address to query
}

// promise
cardano.address(query)
  .then(data => console.log('address', data))
  .catch(err => console.log('err', err))

// async/await
const myCardanoFunc = async () => {
  try {
    const data = await cardano.address(query)
    console.log(data)  
  }
  catch(err) { console.log(err) }
}

myCardanoFunc()

Supported Endpoints

cardano.address() - /api/addresses/summary/{address}
// Get summary information about an address
const query = {
    path: 'Ae2tdPwU...fQwGpm' // Required, wallet address to check
}

cardano.address(query)
  .then(data => console.log('address', data))
cardano.block() - /api/blocks/summary/{hash}
// 
const query = {
    path: 'Ae2tdPwU...fQwGpm' // Required, block hash to check
}

cardano.block(query)
  .then(data => console.log('block', data))
cardano.pagesTotal() - /api/blocks/pages/total

Get the list of total pages

const query = {
    pageSize: 3 // Optional
}

cardano.pagesTotal(query)
  .then(data => console.log('blockTotal', data))
cardano.genesisAddress() - /api/genesis/address/pages
const query = {
    page: 1,        // Optional
    pageSize: 3,    // Optional
    redeemed: true  // Optional
}

cardano.genesisAddress(query)
  .then(data => console.log('genesisAddress', data))
cardano.genesisPagesTotal() - /api/genesis/address/pages/total
const query = {
    pageSize: 3,    // Optional
    redeemed: true  // Optional
}

cardano.genesisPagesTotal(query)
  .then(data => console.log('genesisPagesTotal', data))
cardano.genesisSummary() - /api/genesis/address/pages/total
cardano.genesisSummary()
  .then(data => console.log('genesisSummary', data))
cardano.epoch() - /api/search/epoch/{epoch}
const query = {
    path: 3,    // Required, epoch to check
    slot: 24    // Optional
}

cardano.epoch(query)
  .then(data => console.log('epoch', data))
cardano.transaction() - /api/txs/summary/{txid}
const query = {
    path: 'Ae2tdPwU...fQwGpm' // Required, transaction to check
}

cardano.transaction(query)
  .then(data => console.log('transaction', data))
cardano.transactionLast() - /api/txs/last
cardano.transactionLast()
  .then(data => console.log('transactionLast', data))
  • A couple of the endpoints are represented with breaking changes in the official documentation, assume that more could change in the future

test

npm test

Keywords

FAQs

Package last updated on 23 Dec 2017

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