TypedString
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:64
A Typed that represents a UTF-8 sequence of bytes.
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: string;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:68
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(): string;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:72
The default value for the string type is the empty string (i.e. ""
).
Returns
Section titled “Returns”string
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(): string | number | bigint;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:110
The maximum value for numeric types.
Returns
Section titled “Returns”string
| number
| bigint
Inherited from
Section titled “Inherited from”minValue()
Section titled “minValue()”minValue(): string | number | bigint;
Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/typed.d.ts:106
The minimum value for numeric types.
Returns
Section titled “Returns”string
| number
| bigint