Generate a random dynamic bytes of size n bits.
The number of bits for the dynamic bytes. Must be a multiple of 8, otherwise the last byte will be truncated.
A new, random dynamic bytes of size n bits.
Generate a random dynamic string of size n bits.
The number of bits for the string.
A new, random string of size n bits.
Generate a random Uint128 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2n ** 128n - 1n.
A random Uint128 value.
Generate a random Uint16 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2 ** 16 - 1. @returns: A random Uint16 value.
Generate a random Uint256 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2n ** 256n - 1n.
A random Uint256 value.
Generate a random Uint32 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2 ** 32 - 1. @returns: A random Uint32 value.
Generate a random Uint512 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2n ** 512n - 1n.
A random Uint512 value.
Generate a random Uint64 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2n ** 64n - 1n. @returns: A random Uint64 value.
Generate a random Uint8 within the specified range.
Minimum value (inclusive). Defaults to 0.
Maximum value (inclusive). Defaults to 2 ** 8 - 1. @returns: A random Uint8 value.
Generate a random Algorand address. @returns: A new, random Algorand address.