Converts BigDecimal into BigInt.
import { decimals } from "@protofire/subgraph-devkit";import { BigDecimal } from "@graphprotocol/graph-ts";const n = BigDecimal.fromString("1234.56");decimals.toBigInt(n); // => 123456
the BigInt representation of the BigDecimal.
the BigDecimal number.
Generated using TypeDoc
Converts BigDecimal into BigInt.
Example
Returns
the BigInt representation of the BigDecimal.