function bigIntMultiply(base, multiplier, roundingMode): bigint;Defined in: aa-sdk/core/src/utils/bigint.ts:79
Given a bigint and a number (which can be a float), returns the bigint value. Note: this function has loss and will round down to the nearest integer.
| Parameter | Type | Default value | Description |
|---|---|---|---|
|
|
| the number to be multiplied |
|
|
| the amount to multiply by |
|
| the rounding mode to use when calculating the percent. defaults to ROUND_UP |
bigint
the bigint value of the multiplication with the number rounded by the rounding mode