![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@lido-terra-sdk/helpers
Advanced tools
Usable helpers for Lido Terra Finance projects. Part of [Lido JS SDK](https://github.com/lidofinance/lido-terra-js-sdk/#readme)
Usable helpers for Lido Terra Finance projects. Part of Lido JS SDK
yarn add @lido-terra-sdk/helpers
Compose terra finder link from given arguments
import { CHAIN, NETWORK } from '@lido-terra-sdk/constants';
import { TerraEntities, getTerraFinderLink } from '@lido-terra-sdk/helpers';
const link = getTerraFinderLink(
TerraEntities.Address,
NETWORK.MAINNET,
'terra1mka5pnxk5jwqwpkwqj928fp5m9p3hqu2vwjqfa',
);
Create a Coin
instance from string and denom
import { CHAIN, DENOM } from '@lido-terra-sdk/constants';
import { coinify } from '@lido-terra-sdk/helpers';
const coin = coinify('10', DENOM.uluna);
Extract amount from Coin
instance and converts into string
import { CHAIN, DENOM } from '@lido-terra-sdk/constants';
import { formatCoinWithoutDenom } from '@lido-terra-sdk/helpers';
const coin = coinify('10000000', DENOM.uluna);
console.log(formatCoinWithoutDenom(coin)); //10
Create Coin
instance from Dec
amount and denom
import { CHAIN, DENOM } from '@lido-terra-sdk/constants';
import { decToCoin } from '@lido-terra-sdk/helpers';
import { Dec } from '@terra-money/terra.js';
const coin = decToCoin(new Dec('10000000'), DENOM.uluna);
Multiply provided Dec
value by 10**6
import { Dec } from '@terra-money/terra.js';
import { microfy } from '@lido-terra-sdk/helpers';
const coin = microfy(new Dec('10')); //10_000_000
Divide provided Dec
value by 10**6
import { Dec } from '@terra-money/terra.js';
import { demicrofy } from '@lido-terra-sdk/helpers';
const coin = demicrofy(new Dec('10000000')); //10
Convert string into Dec
with multiplication by 10**6
import { parseCoin } from '@lido-terra-sdk/helpers';
const coin = parseCoin('10'); //Dec('10000000')
Convert Dec
amount into formatted string
import { Dec } from '@terra-money/terra.js';
import { parseCoin } from '@lido-terra-sdk/helpers';
const dec = new Dec('10000000');
console.log(humanifyDec(dec)); /// '10.000000'
Divide string amount by 10**6
import { toMicroString } from '@lido-terra-sdk/helpers';
console.log(toMicroString('10')); // '10000000'
FAQs
Usable helpers for Lido Terra Finance projects. Part of [Lido JS SDK](https://github.com/lidofinance/lido-terra-js-sdk/#readme)
The npm package @lido-terra-sdk/helpers receives a total of 1 weekly downloads. As such, @lido-terra-sdk/helpers popularity was classified as not popular.
We found that @lido-terra-sdk/helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.