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.
Extends
Section titled “Extends”Properties
Section titled “Properties”_typedSymbol
Section titled “_typedSymbol”readonly _typedSymbol: Symbol;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:90
@_ignore:
Inherited from
Section titled “Inherited from”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.
Inherited from
Section titled “Inherited from”value: bigint;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:34
The value.
Overrides
Section titled “Overrides”Accessors
Section titled “Accessors”arrayLength
Section titled “arrayLength”Get Signature
Section titled “Get Signature”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.
Returns
Section titled “Returns”null
| number
Inherited from
Section titled “Inherited from”tupleName
Section titled “tupleName”Get Signature
Section titled “Get Signature”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.
Returns
Section titled “Returns”null
| string
Inherited from
Section titled “Inherited from”Methods
Section titled “Methods”defaultValue()
Section titled “defaultValue()”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
.
Returns
Section titled “Returns”bigint
Overrides
Section titled “Overrides”format()
Section titled “format()”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.
Returns
Section titled “Returns”string
Inherited from
Section titled “Inherited from”isBigInt()
Section titled “isBigInt()”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]].
Returns
Section titled “Returns”this is TypedBigInt
Inherited from
Section titled “Inherited from”isData()
Section titled “isData()”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]].
Returns
Section titled “Returns”this is TypedData
Inherited from
Section titled “Inherited from”isString()
Section titled “isString()”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]].
Returns
Section titled “Returns”this is TypedString
Inherited from
Section titled “Inherited from”maxValue()
Section titled “maxValue()”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.
Returns
Section titled “Returns”bigint
Overrides
Section titled “Overrides”minValue()
Section titled “minValue()”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.
Returns
Section titled “Returns”bigint