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

@api3/airnode-abi

Package Overview
Dependencies
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@api3/airnode-abi

> Encoding and decoding utilities intended for use with Airnode

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
increased by35.89%
Maintainers
2
Weekly downloads
 
Created
Source

Monorepo version: @airnode/airnode-abi

Stand-alone version: @api3/airnode-abi

Encoding and decoding utilities intended for use with Airnode

Description

Airnode-ABI provides a unique way to encode and decode parameters. Parameters are provided with encoding types, names and values. The types are shortened and grouped with a version as the "header". The name/value pairs are then grouped and encoded as the rest of the body.

An advantage of encoding parameters this way is that parameters can be decoded natively using the language(s) of the specific blockchain. In the case of EVM blockchains, this means that parameters can be encoded as well as decoded in Solidity (or Vyper), without any additional requirements.

You can find additional documentation in the Airnode ABI specifications

Installation

You can install with either npm or Yarn

# npm
npm install --save @airnode/airnode-abi

# Yarn
yarn add @airnode/airnode-abi

Usage

Encoding

encode accepts an array of objects with the following required keys:

  1. type - The full list of accepted types can be found in the specifications

  2. name

  3. value

It is important to note that numeric values (int256 and uint256) should be submitted as strings in order to preserve precision.

import { encode } from '@airnode/airnode-abi';

const parameters = [
  { type: 'bytes32', name: 'from', value: 'ETH' },
  { type: 'uint256', name: 'amount', value: '100000' },
];
const encodedData = encode(parameters);

console.log(encodedData);
// '0x...'

Decoding

Decoding returns an object where the keys are the "names" and the values are the "values" from the initial encoding.

It is important to note that int256 and uint256 will be decoded back to strings.

import { decode } from '@airnode/airnode-abi';

const encodedData = '0x...';
const decoded = decode(encodedData);

console.log(decoded);
// { from: 'ETH', amount: ethers.BigNumber.from('100000') }

FAQs

Package last updated on 31 Dec 2020

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