Skip to main content

Numeric

Fluid.js includes Dec and Int, which represent decimal numbers and integer numbers compatible with the Cosmos-SDK.


_7
import { Dec, Int } from '@terra-money/terra.js';
_7
_7
// conversion into dec
_7
const d = new Dec(123.11);
_7
_7
// addition
_7
d.add(3).sub(5).div(3).mod(2);