Algorand TypeScript Testing
    Preparing search index...

    Hierarchy

    Index

    Constructors

    Methods

    • Generates a random biguint value within the specified range.

      Parameters

      • OptionalminValue: BigUintCompat = 0n

        The minimum value (inclusive).

      Returns biguint

      • A random biguint value.
    • Generates a random bytes of the specified length.

      Parameters

      • Optionallength: number = MAX_BYTES_SIZE

        The length of the bytes.

      Returns bytes

      • A random bytes.
    • Generates a random string of the specified length.

      Parameters

      • Optionallength: number = 11

        The length of the string.

      Returns string

      • A random string.
    • Generates a random uint64 value within the specified range.

      Parameters

      • OptionalminValue: Uint64Compat = 0n

        The minimum value (inclusive).

      • OptionalmaxValue: Uint64Compat = MAX_UINT64

        The maximum value (inclusive).

      Returns uint64

      • A random uint64 value.