Sign In

@entangle_protocol/address-converter

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@entangle_protocol/address-converter

Address converter, convert EVM address to Ethermint address.

latest
npmnpm
Version
0.1.10
Version published
Maintainers
3
Created
Source

Address converter

A simple converter between EVM address and Ethermint addresses.

Installation

npm install @entangle_protocol/address-converter

Usage

Converter

import { ethToEthermint, ethermintToEth } from '@entangle_protocol/address-converter'

let address = ethToEthermint('0xe2D61e49ff8a9d724CC54d338D8076F878aC6b71')
// "ethm1uttpuj0l32whynx9f5ecmqrklpu2c6m3973048"

let address = ethermintToEth('ethm1uttpuj0l32whynx9f5ecmqrklpu2c6m3973048')
// "0xe2D61e49ff8a9d724CC54d338D8076F878aC6b71"

Decoders

import { ETH, ETHERMINT } from '@entangle_protocol/address-converter'
let hex = ETH.decoder('0xe2D61e49ff8a9d724CC54d338D8076F878aC6b71')
// hex.toString('hex') === "e2d61e49ff8a9d724cc54d338d8076f878ac6b71"

hex = ETHERMINT.decoder('ethm1uttpuj0l32whynx9f5ecmqrklpu2c6m3973048')
// hex.toString('hex') === "e2d61e49ff8a9d724cc54d338d8076f878ac6b71"

Encoders

import { ETH, ETHERMINT } from '@entangle_protocol/address-converter'
let address = ETH.encoder(
  Buffer.from('e2d61e49ff8a9d724cc54d338d8076f878ac6b71', 'hex'),
)
// address === "0xe2D61e49ff8a9d724CC54d338D8076F878aC6b71"

address = ETHERMINT.encoder(
  Buffer.from('e2d61e49ff8a9d724cc54d338d8076f878ac6b71', 'hex'),
)
// address === "ethm1uttpuj0l32whynx9f5ecmqrklpu2c6m3973048"

EVMOS support

import { ethToEvmos, evmosToEth } from '@entangle_protocol/address-converter'

let address = ethToEvmos('0x14574a6DFF2Ddf9e07828b4345d3040919AF5652')
// "evmos1z3t55m0l9h0eupuz3dp5t5cypyv674jj7mz2jw"

let address = evmosToEth('evmos1z3t55m0l9h0eupuz3dp5t5cypyv674jj7mz2jw')
// "0x14574a6DFF2Ddf9e07828b4345d3040919AF5652"

Reference

  • ENSDOMAINS-AddressEnconder

FAQs

Package last updated on 10 Apr 2024

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