utils.fromAtomic(value)

Converts from atomic to standard units.

Parameters

NameTypeDescription
valueBigNumberThe value to be converted.

Returns

TypeDescription
BigNumberThe value in standard units.

Example

Info
Info
Use a token-specific version of getIrysUploader() to connect to an Irys Bundler before uploading. Choose one from the setup documentation.
const irys = await getIrysUploader();

const atomicBalance = await irys.getLoadedBalance();
const convertedBalance = irys.utils.fromAtomic(atomicBalance).toString();

Atomic Units

Info
Info
Atomic units refer to the smallest possible unit of a given cryptocurrency. In Ethereum, atomic units are called Wei, and they represent the smallest unit of Ether. Similar to how 1 dollar can be broken down into 100 cents, 1 Ether can be broken down into 10^18 Wei. In Solana, atomic units are called Lamports, and 1 SOL can be broken down into 10^9 Lamports.