Skip to content

TypedBigInt

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:30

A Typed that represents a numeric value.

readonly _typedSymbol: Symbol;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:90

@_ignore:

Typed._typedSymbol


readonly type: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:82

The type, as a Solidity-compatible type.

Typed.type


value: bigint;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:34

The value.

Typed.value

get arrayLength(): null | number;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:132

Returns the length of the array type or -1 if it is dynamic.

Throws if the type is not an array.

null | number

Typed.arrayLength


get tupleName(): null | string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:126

Returns the tuple name, if this is a tuple. Throws otherwise.

null | string

Typed.tupleName

defaultValue(): bigint;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:38

The default value for all numeric types is 0.

bigint

Typed.defaultValue


format(): string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:98

Format the type as a Human-Readable type.

string

Typed.format


isBigInt(): this is TypedBigInt;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:114

Returns true and provides a type guard is this is a [[TypedBigInt]].

this is TypedBigInt

Typed.isBigInt


isData(): this is TypedData;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:118

Returns true and provides a type guard is this is a [[TypedData]].

this is TypedData

Typed.isData


isString(): this is TypedString;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:122

Returns true and provides a type guard is this is a [[TypedString]].

this is TypedString

Typed.isString


maxValue(): bigint;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:46

The minimum value for this type, accounting for bit-width.

bigint

Typed.maxValue


minValue(): bigint;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:42

The minimum value for this type, accounting for bit-width and signed-ness.

bigint

Typed.minValue