Converts a number to bytes.
import { numberToBytes } from "thirdweb/utils";const bytes = numberToBytes(420);console.log(bytes); // Uint8Array(2) [ 1, 164 ]
The bytes representation of the number.