formatWei static method

String formatWei(
  1. BigInt wei
)

Formats wei to a human-readable wei string.

Implementation

static String formatWei(BigInt wei) {
  return wei.toString();
}