Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BlockNumberArg ¶
Types ¶
type ArgsWrapperFunc ¶
type Option ¶
func WithArgsWrapper ¶
func WithArgsWrapper[T any](fn ArgsWrapperFunc) Option[T]
func WithRetWrapper ¶
func WithRetWrapper[T any](fn RetWrapperFunc[T]) Option[T]
type RetWrapperFunc ¶
var ( HexBigRetWrapper RetWrapperFunc[big.Int] = func(ret *big.Int) any { return (*hexutil.Big)(ret) } HexUintRetWrapper RetWrapperFunc[uint] = func(ret *uint) any { return (*hexutil.Uint)(ret) } HexUint64RetWrapper RetWrapperFunc[uint64] = func(ret *uint64) any { return (*hexutil.Uint64)(ret) } HexBytesRetWrapper RetWrapperFunc[[]byte] = func(ret *[]byte) any { return (*hexutil.Bytes)(ret) } )
Click to show internal directories.
Click to hide internal directories.