Numeric
Numeric#
Terra.js includes Dec
and Int
, which represent decimal numbers and integer numbers, in a Cosmos-SDK compatible way.
import { Dec, Int } from '@terra-money/terra.js';
// conversion into dec
const d = new Dec(123.11);
// addition
d.add(3).sub(5).div(3).mod(2);