Template tagged literal for creating new Int objects out of literal string.
This does not support literal string interpolation with ${}
.
Usage is:
import { int } from "@terra-money/terra.js";
const int1 = int`234`;
const int2 = new Int("234");
int1.equals(int2);
Template tagged literal for creating new Dec objects out of literal string. This does not support literal string interpolation with
${}
.Usage is: