@wireio/stake 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/stake.browser.js +1 -1
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.js +1 -1
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +1 -1
- package/lib/stake.m.js.map +1 -1
- package/package.json +1 -1
- package/src/networks/ethereum/ethereum.ts +1 -1
package/package.json
CHANGED
|
@@ -375,7 +375,7 @@ export class EthereumStakingClient implements IStakingClient {
|
|
|
375
375
|
// let ethPriceUsd: bigint = BigInt(answer.toString());)
|
|
376
376
|
|
|
377
377
|
let ethPriceUsdBn = await this.contract.EthUsdPriceConsumer.getPrice18Decimals();
|
|
378
|
-
let ethPriceUsd: bigint = BigInt(ethPriceUsdBn.toString()) /
|
|
378
|
+
let ethPriceUsd: bigint = BigInt(ethPriceUsdBn.toString()) / BigInt(1e10);
|
|
379
379
|
|
|
380
380
|
let nativePriceTimestamp: number = Number(updatedAt);
|
|
381
381
|
|