From 0907750feaa091795a63474c6d56020ab40abb03 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Tue, 29 Oct 2019 19:58:13 -0600 Subject: [PATCH] fix: update sol:lamports ratio --- web3.js/src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web3.js/src/index.js b/web3.js/src/index.js index 56e7374941..424d9e902a 100644 --- a/web3.js/src/index.js +++ b/web3.js/src/index.js @@ -19,5 +19,5 @@ export { } from './util/send-and-confirm-raw-transaction'; export {testnetChannelEndpoint} from './util/testnet'; -// There are 2^34 lamports in one SOL -export const LAMPORTS_PER_SOL = 17179869184; +// There are 1-billion lamports in one SOL +export const LAMPORTS_PER_SOL = 1000000000;