Browser API documentation

Class: Mesh

The main class for this package. Has methods for receiving order events and sending orders through the 0x Mesh network.

Hierarchy

  • Mesh

Constructors

constructer

+ new Mesh(config: Config): Mesh

Defined in mesh.ts:142arrow-up-right

Instantiates a new Mesh instance.

Parameters:

Name

Type

Description

config

Configuration options for Mesh

Returns: Mesh

An instance of Mesh

Methods

addOrdersAsync

addOrdersAsync(orders: SignedOrder[], pinned: boolean): Promise‹ValidationResults

Defined in mesh.ts:292arrow-up-right

Validates and adds the given orders to Mesh. If an order is successfully added, Mesh will share it with any peers in the network and start watching it for changes (e.g. filled, canceled, expired). The returned promise will only be rejected if there was an error validating or adding the order; it will not be rejected for any invalid orders (check results.rejected instead).

Parameters:

Name

Type

Default

Description

orders

SignedOrder[]

-

An array of orders to add.

pinned

boolean

true

Whether or not the orders should be pinned. Pinned orders will not be affected by any DDoS prevention or incentive mechanisms and will always stay in storage until they are no longer fillable.

Returns: Promise‹ValidationResults

Validation results for the given orders, indicating which orders were accepted and which were rejected.

getOrdersAsync

getOrdersAsync(perPage: number): Promise‹GetOrdersResponse

Defined in mesh.ts:221arrow-up-right

Get all 0x signed orders currently stored in the Mesh node

Parameters:

Name

Type

Default

Description

perPage

number

200

number of signedOrders to fetch per paginated request

Returns: Promise‹GetOrdersResponse

the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts

getOrdersForPageAsync

getOrdersForPageAsync(page: number, perPage: number, snapshotID?: undefined | string): Promise‹GetOrdersResponse

Defined in mesh.ts:263arrow-up-right

Get page of 0x signed orders stored on the Mesh node at the specified snapshot

Parameters:

Name

Type

Description

page

number

Page index at which to retrieve orders

perPage

number

Number of signedOrders to fetch per paginated request

snapshotID?

undefined | string

The DB snapshot at which to fetch orders. If omitted, a new snapshot is created

Returns: Promise‹GetOrdersResponse

the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts

getStatsAsync

getStatsAsync(): Promise‹Stats

Defined in mesh.ts:204arrow-up-right

Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to.

Returns: Promise‹Stats

onError

onError(handler: function): void

Defined in mesh.ts:162arrow-up-right

Registers a handler which will be called in the event of a critical error. Note that the handler will not be called for non-critical errors. In order to ensure no errors are missed, this should be called before startAsync.

Parameters:

handler: function

The handler to be called.

▸ (err: Error): void

Parameters:

Name

Type

err

Error

Returns: void

onOrderEvents

onOrderEvents(handler: function): void

Defined in mesh.ts:177arrow-up-right

Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or filled. In order to ensure no events are missed, this should be called before startAsync.

Parameters:

handler: function

The handler to be called.

▸ (events: OrderEvent[]): void

Parameters:

Name

Type

events

Returns: void

startAsync

startAsync(): Promise‹void›

Defined in mesh.ts:188arrow-up-right

Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them.

Returns: Promise‹void›

Enumeration: ContractEventKind

Enumeration members

ERC1155ApprovalForAllEvent

ERC1155ApprovalForAllEvent: = "ERC1155ApprovalForAllEvent"

Defined in types.ts:468arrow-up-right

ERC1155TransferBatchEvent

ERC1155TransferBatchEvent: = "ERC1155TransferBatchEvent"

Defined in types.ts:470arrow-up-right

ERC1155TransferSingleEvent

ERC1155TransferSingleEvent: = "ERC1155TransferSingleEvent"

Defined in types.ts:469arrow-up-right

ERC20ApprovalEvent

ERC20ApprovalEvent: = "ERC20ApprovalEvent"

Defined in types.ts:464arrow-up-right

ERC20TransferEvent

ERC20TransferEvent: = "ERC20TransferEvent"

Defined in types.ts:463arrow-up-right

ERC721ApprovalEvent

ERC721ApprovalEvent: = "ERC721ApprovalEvent"

Defined in types.ts:466arrow-up-right

ERC721ApprovalForAllEvent

ERC721ApprovalForAllEvent: = "ERC721ApprovalForAllEvent"

Defined in types.ts:467arrow-up-right

ERC721TransferEvent

ERC721TransferEvent: = "ERC721TransferEvent"

Defined in types.ts:465arrow-up-right

ExchangeCancelEvent

ExchangeCancelEvent: = "ExchangeCancelEvent"

Defined in types.ts:472arrow-up-right

ExchangeCancelUpToEvent

ExchangeCancelUpToEvent: = "ExchangeCancelUpToEvent"

Defined in types.ts:473arrow-up-right

ExchangeFillEvent

ExchangeFillEvent: = "ExchangeFillEvent"

Defined in types.ts:471arrow-up-right

WethDepositEvent

WethDepositEvent: = "WethDepositEvent"

Defined in types.ts:474arrow-up-right

WethWithdrawalEvent

WethWithdrawalEvent: = "WethWithdrawalEvent"

Defined in types.ts:475arrow-up-right

Enumeration: OrderEventEndState

Enumeration members

Added

Added: = "ADDED"

Defined in types.ts:538arrow-up-right

Cancelled

Cancelled: = "CANCELLED"

Defined in types.ts:541arrow-up-right

Expired

Expired: = "EXPIRED"

Defined in types.ts:542arrow-up-right

FillabilityIncreased

FillabilityIncreased: = "FILLABILITY_INCREASED"

Defined in types.ts:545arrow-up-right

Filled

Filled: = "FILLED"

Defined in types.ts:539arrow-up-right

FullyFilled

FullyFilled: = "FULLY_FILLED"

Defined in types.ts:540arrow-up-right

Invalid

Invalid: = "INVALID"

Defined in types.ts:537arrow-up-right

StoppedWatching

StoppedWatching: = "STOPPED_WATCHING"

Defined in types.ts:546arrow-up-right

Unexpired

Unexpired: = "UNEXPIRED"

Defined in types.ts:543arrow-up-right

Unfunded

Unfunded: = "UNFUNDED"

Defined in types.ts:544arrow-up-right

Enumeration: RejectedOrderKind

A set of categories for rejected orders.

Enumeration members

CoordinatorError

CoordinatorError: = "COORDINATOR_ERROR"

Defined in types.ts:630arrow-up-right

MeshError

MeshError: = "MESH_ERROR"

Defined in types.ts:628arrow-up-right

MeshValidation

MeshValidation: = "MESH_VALIDATION"

Defined in types.ts:629arrow-up-right

ZeroExValidation

ZeroExValidation: = "ZEROEX_VALIDATION"

Defined in types.ts:627arrow-up-right

Enumeration: Verbosity

Enumeration members

Debug

Debug: = 5

Defined in types.ts:211arrow-up-right

Error

Error: = 2

Defined in types.ts:208arrow-up-right

Fatal

Fatal: = 1

Defined in types.ts:207arrow-up-right

Info

Info: = 4

Defined in types.ts:210arrow-up-right

Panic

Panic: = 0

Defined in types.ts:206arrow-up-right

Trace

Trace: = 6

Defined in types.ts:212arrow-up-right

Warn

Warn: = 3

Defined in types.ts:209arrow-up-right

Interface: SchemaValidationResult

Hierarchy

  • SchemaValidationResult

Properties

errors

errors: string[]

Defined in schema_validator.ts:11arrow-up-right

Optional fatal

fatal? : undefined | string

Defined in schema_validator.ts:12arrow-up-right

success

success: boolean

Defined in schema_validator.ts:10arrow-up-right

Interface: SchemaValidator

Hierarchy

  • SchemaValidator

Properties

messageValidator

messageValidator: function

Defined in schema_validator.ts:17arrow-up-right

Type declaration:

▸ (input: string): SchemaValidationResult

Parameters:

Name

Type

input

string

orderValidator

orderValidator: function

Defined in schema_validator.ts:16arrow-up-right

Type declaration:

▸ (input: string): SchemaValidationResult

Parameters:

Name

Type

input

string

Interface: AcceptedOrderInfo

Info for any orders that were accepted.

Hierarchy

  • AcceptedOrderInfo

Properties

fillableTakerAssetAmount

fillableTakerAssetAmount: BigNumber

Defined in types.ts:608arrow-up-right

isNew

isNew: boolean

Defined in types.ts:609arrow-up-right

orderHash

orderHash: string

Defined in types.ts:606arrow-up-right

signedOrder

signedOrder: SignedOrder

Defined in types.ts:607arrow-up-right

Interface: Config

A set of configuration options for Mesh.

Hierarchy

  • Config

Properties

Optional blockPollingIntervalSeconds

blockPollingIntervalSeconds? : undefined | number

Defined in types.ts:118arrow-up-right

Optional bootstrapList

bootstrapList? : string[]

Defined in types.ts:111arrow-up-right

Optional customContractAddresses

customContractAddresses? : ContractAddresses

Defined in types.ts:162arrow-up-right

Optional customOrderFilter

customOrderFilter? : JsonSchema

Defined in types.ts:187arrow-up-right

Optional enableEthereumRPCRateLimiting

enableEthereumRPCRateLimiting? : undefined | false | true

Defined in types.ts:135arrow-up-right

ethereumChainID

ethereumChainID: number

Defined in types.ts:103arrow-up-right

Optional ethereumRPCMaxContentLength

ethereumRPCMaxContentLength? : undefined | number

Defined in types.ts:127arrow-up-right

Optional ethereumRPCMaxRequestsPer24HrUTC

ethereumRPCMaxRequestsPer24HrUTC? : undefined | number

Defined in types.ts:140arrow-up-right

Optional ethereumRPCMaxRequestsPerSecond

ethereumRPCMaxRequestsPerSecond? : undefined | number

Defined in types.ts:146arrow-up-right

Optional ethereumRPCURL

ethereumRPCURL? : undefined | string

Defined in types.ts:100arrow-up-right

Optional maxOrdersInStorage

maxOrdersInStorage? : undefined | number

Defined in types.ts:167arrow-up-right

Optional useBootstrapList

useBootstrapList? : undefined | false | true

Defined in types.ts:106arrow-up-right

Optional verbosity

verbosity? : Verbosity

Defined in types.ts:97arrow-up-right

Optional web3Provider

web3Provider? : SupportedProvider

Defined in types.ts:190arrow-up-right

Interface: ContractAddresses

Hierarchy

  • ContractAddresses

Properties

Optional coordinator

coordinator? : undefined | string

Defined in types.ts:199arrow-up-right

Optional coordinatorRegistry

coordinatorRegistry? : undefined | string

Defined in types.ts:200arrow-up-right

devUtils

devUtils: string

Defined in types.ts:195arrow-up-right

erc1155Proxy

erc1155Proxy: string

Defined in types.ts:198arrow-up-right

erc20Proxy

erc20Proxy: string

Defined in types.ts:196arrow-up-right

erc721Proxy

erc721Proxy: string

Defined in types.ts:197arrow-up-right

exchange

exchange: string

Defined in types.ts:194arrow-up-right

Optional weth9

weth9? : undefined | string

Defined in types.ts:201arrow-up-right

Optional zrxToken

zrxToken? : undefined | string

Defined in types.ts:202arrow-up-right

Interface: ContractEvent

Hierarchy

  • ContractEvent

Properties

address

address: string

Defined in types.ts:516arrow-up-right

blockHash

blockHash: string

Defined in types.ts:511arrow-up-right

isRemoved

isRemoved: boolean

Defined in types.ts:515arrow-up-right

kind

kind: ContractEventKind

Defined in types.ts:517arrow-up-right

logIndex

logIndex: number

Defined in types.ts:514arrow-up-right

parameters

parameters: ContractEventParameters

Defined in types.ts:518arrow-up-right

txHash

txHash: string

Defined in types.ts:512arrow-up-right

txIndex

txIndex: number

Defined in types.ts:513arrow-up-right

Interface: ERC1155ApprovalForAllEvent

Hierarchy

  • ERC1155ApprovalForAllEvent

Properties

approved

approved: boolean

Defined in types.ts:380arrow-up-right

operator

operator: string

Defined in types.ts:379arrow-up-right

owner

owner: string

Defined in types.ts:378arrow-up-right

Interface: ERC1155TransferBatchEvent

Hierarchy

  • ERC1155TransferBatchEvent

Properties

from

from: string

Defined in types.ts:362arrow-up-right

ids

ids: BigNumber[]

Defined in types.ts:364arrow-up-right

operator

operator: string

Defined in types.ts:361arrow-up-right

to

to: string

Defined in types.ts:363arrow-up-right

values

values: BigNumber[]

Defined in types.ts:365arrow-up-right

Interface: ERC1155TransferSingleEvent

Hierarchy

  • ERC1155TransferSingleEvent

Properties

from

from: string

Defined in types.ts:345arrow-up-right

id

id: BigNumber

Defined in types.ts:347arrow-up-right

operator

operator: string

Defined in types.ts:344arrow-up-right

to

to: string

Defined in types.ts:346arrow-up-right

value

value: BigNumber

Defined in types.ts:348arrow-up-right

Interface: ERC20ApprovalEvent

Hierarchy

  • ERC20ApprovalEvent

Properties

owner

owner: string

Defined in types.ts:299arrow-up-right

spender

spender: string

Defined in types.ts:300arrow-up-right

value

value: BigNumber

Defined in types.ts:301arrow-up-right

Interface: ERC20TransferEvent

Hierarchy

  • ERC20TransferEvent

Properties

from

from: string

Defined in types.ts:286arrow-up-right

to

to: string

Defined in types.ts:287arrow-up-right

value

value: BigNumber

Defined in types.ts:288arrow-up-right

Interface: ERC721ApprovalEvent

Hierarchy

  • ERC721ApprovalEvent

Properties

approved

approved: string

Defined in types.ts:326arrow-up-right

owner

owner: string

Defined in types.ts:325arrow-up-right

tokenId

tokenId: BigNumber

Defined in types.ts:327arrow-up-right

Interface: ERC721ApprovalForAllEvent

Hierarchy

  • ERC721ApprovalForAllEvent

Properties

approved

approved: boolean

Defined in types.ts:340arrow-up-right

operator

operator: string

Defined in types.ts:339arrow-up-right

owner

owner: string

Defined in types.ts:338arrow-up-right

Interface: ERC721TransferEvent

Hierarchy

  • ERC721TransferEvent

Properties

from

from: string

Defined in types.ts:312arrow-up-right

to

to: string

Defined in types.ts:313arrow-up-right

tokenId

tokenId: BigNumber

Defined in types.ts:314arrow-up-right

Interface: ExchangeCancelEvent

Hierarchy

  • ExchangeCancelEvent

Properties

feeRecipientAddress

feeRecipientAddress: string

Defined in types.ts:421arrow-up-right

makerAddress

makerAddress: string

Defined in types.ts:419arrow-up-right

makerAssetData

makerAssetData: string

Defined in types.ts:423arrow-up-right

orderHash

orderHash: string

Defined in types.ts:422arrow-up-right

senderAddress

senderAddress: string

Defined in types.ts:420arrow-up-right

takerAssetData

takerAssetData: string

Defined in types.ts:424arrow-up-right

Interface: ExchangeCancelUpToEvent

Hierarchy

  • ExchangeCancelUpToEvent

Properties

makerAddress

makerAddress: string

Defined in types.ts:428arrow-up-right

orderEpoch

orderEpoch: BigNumber

Defined in types.ts:430arrow-up-right

orderSenderAddress

orderSenderAddress: string

Defined in types.ts:429arrow-up-right

Interface: ExchangeFillEvent

Hierarchy

  • ExchangeFillEvent

Properties

feeRecipientAddress

feeRecipientAddress: string

Defined in types.ts:387arrow-up-right

makerAddress

makerAddress: string

Defined in types.ts:384arrow-up-right

makerAssetData

makerAssetData: string

Defined in types.ts:394arrow-up-right

makerAssetFilledAmount

makerAssetFilledAmount: BigNumber

Defined in types.ts:388arrow-up-right

makerFeeAssetData

makerFeeAssetData: string

Defined in types.ts:396arrow-up-right

makerFeePaid

makerFeePaid: BigNumber

Defined in types.ts:390arrow-up-right

orderHash

orderHash: string

Defined in types.ts:393arrow-up-right

protocolFeePaid

protocolFeePaid: BigNumber

Defined in types.ts:392arrow-up-right

senderAddress

senderAddress: string

Defined in types.ts:386arrow-up-right

takerAddress

takerAddress: string

Defined in types.ts:385arrow-up-right

takerAssetData

takerAssetData: string

Defined in types.ts:395arrow-up-right

takerAssetFilledAmount

takerAssetFilledAmount: BigNumber

Defined in types.ts:389arrow-up-right

takerFeeAssetData

takerFeeAssetData: string

Defined in types.ts:397arrow-up-right

takerFeePaid

takerFeePaid: BigNumber

Defined in types.ts:391arrow-up-right

Interface: GetOrdersResponse

Hierarchy

  • GetOrdersResponse

Properties

ordersInfos

ordersInfos: OrderInfo[]

Defined in types.ts:19arrow-up-right

snapshotID

snapshotID: string

Defined in types.ts:17arrow-up-right

snapshotTimestamp

snapshotTimestamp: number

Defined in types.ts:18arrow-up-right

Interface: JsonSchema

An interface for JSON schema types, which are used for custom order filters.

Hierarchy

  • JsonSchema

Properties

Optional $ref

$ref? : undefined | string

Defined in types.ts:41arrow-up-right

Optional $schema

$schema? : undefined | string

Defined in types.ts:40arrow-up-right

Optional additionalItems

additionalItems? : boolean | JsonSchema

Defined in types.ts:52arrow-up-right

Optional additionalProperties

additionalProperties? : boolean | JsonSchema

Defined in types.ts:60arrow-up-right

Optional allOf

allOf? : JsonSchema[]

Defined in types.ts:82arrow-up-right

Optional anyOf

anyOf? : JsonSchema[]

Defined in types.ts:83arrow-up-right

Optional const

const? : any

Defined in types.ts:79arrow-up-right

Optional definitions

definitions? : undefined | object

Defined in types.ts:61arrow-up-right

Optional dependencies

dependencies? : undefined | object

Defined in types.ts:70arrow-up-right

Optional description

description? : undefined | string

Defined in types.ts:43arrow-up-right

Optional enum

enum? : any[]

Defined in types.ts:73arrow-up-right

Optional exclusiveMaximum

exclusiveMaximum? : undefined | false | true

Defined in types.ts:46arrow-up-right

Optional exclusiveMinimum

exclusiveMinimum? : undefined | false | true

Defined in types.ts:48arrow-up-right

Optional format

format? : undefined | string

Defined in types.ts:81arrow-up-right

Optional id

id? : undefined | string

Defined in types.ts:39arrow-up-right

Optional items

items? : JsonSchema | JsonSchema[]

Defined in types.ts:53arrow-up-right

Optional maxItems

maxItems? : undefined | number

Defined in types.ts:54arrow-up-right

Optional maxLength

maxLength? : undefined | number

Defined in types.ts:49arrow-up-right

Optional maxProperties

maxProperties? : undefined | number

Defined in types.ts:57arrow-up-right

Optional maximum

maximum? : undefined | number

Defined in types.ts:45arrow-up-right

Optional minItems

minItems? : undefined | number

Defined in types.ts:55arrow-up-right

Optional minLength

minLength? : undefined | number

Defined in types.ts:50arrow-up-right

Optional minProperties

minProperties? : undefined | number

Defined in types.ts:58arrow-up-right

Optional minimum

minimum? : undefined | number

Defined in types.ts:47arrow-up-right

Optional multipleOf

multipleOf? : undefined | number

Defined in types.ts:44arrow-up-right

Optional not

not? : JsonSchema

Defined in types.ts:85arrow-up-right

Optional oneOf

oneOf? : JsonSchema[]

Defined in types.ts:84arrow-up-right

Optional pattern

pattern? : string | RegExp

Defined in types.ts:51arrow-up-right

Optional patternProperties

patternProperties? : undefined | object

Defined in types.ts:67arrow-up-right

Optional properties

properties? : undefined | object

Defined in types.ts:64arrow-up-right

Optional required

required? : string[]

Defined in types.ts:59arrow-up-right

Optional title

title? : undefined | string

Defined in types.ts:42arrow-up-right

Optional type

type? : string | string[]

Defined in types.ts:80arrow-up-right

Optional uniqueItems

uniqueItems? : undefined | false | true

Defined in types.ts:56arrow-up-right

Interface: LatestBlock

Hierarchy

  • LatestBlock

Properties

hash

hash: string

Defined in types.ts:643arrow-up-right

number

number: number

Defined in types.ts:642arrow-up-right

Interface: OrderEvent

Order events are fired by Mesh whenever an order is added, canceled, expired, or filled.

Hierarchy

  • OrderEvent

Properties

contractEvents

contractEvents: ContractEvent[]

Defined in types.ts:569arrow-up-right

endState

endState: OrderEventEndState

Defined in types.ts:567arrow-up-right

fillableTakerAssetAmount

fillableTakerAssetAmount: BigNumber

Defined in types.ts:568arrow-up-right

orderHash

orderHash: string

Defined in types.ts:565arrow-up-right

signedOrder

signedOrder: SignedOrder

Defined in types.ts:566arrow-up-right

timestampMs

timestampMs: number

Defined in types.ts:564arrow-up-right

Interface: OrderInfo

Hierarchy

  • OrderInfo

Properties

fillableTakerAssetAmount

fillableTakerAssetAmount: BigNumber

Defined in types.ts:32arrow-up-right

orderHash

orderHash: string

Defined in types.ts:30arrow-up-right

signedOrder

signedOrder: SignedOrder

Defined in types.ts:31arrow-up-right

Interface: RejectedOrderInfo

Info for any orders that were rejected, including the reason they were rejected.

Hierarchy

  • RejectedOrderInfo

Properties

kind

kind: RejectedOrderKind

Defined in types.ts:619arrow-up-right

orderHash

orderHash: string

Defined in types.ts:617arrow-up-right

signedOrder

signedOrder: SignedOrder

Defined in types.ts:618arrow-up-right

status

status: RejectedOrderStatus

Defined in types.ts:620arrow-up-right

Interface: RejectedOrderStatus

Provides more information about why an order was rejected.

Hierarchy

  • RejectedOrderStatus

Properties

code

code: string

Defined in types.ts:637arrow-up-right

message

message: string

Defined in types.ts:638arrow-up-right

Interface: Stats

Hierarchy

  • Stats

Properties

ethRPCRateLimitExpiredRequests

ethRPCRateLimitExpiredRequests: number

Defined in types.ts:680arrow-up-right

ethRPCRequestsSentInCurrentUTCDay

ethRPCRequestsSentInCurrentUTCDay: number

Defined in types.ts:679arrow-up-right

ethereumChainID

ethereumChainID: number

Defined in types.ts:671arrow-up-right

latestBlock

latestBlock: LatestBlock

Defined in types.ts:672arrow-up-right

maxExpirationTime

maxExpirationTime: BigNumber

Defined in types.ts:677arrow-up-right

numOrders

numOrders: number

Defined in types.ts:674arrow-up-right

numOrdersIncludingRemoved

numOrdersIncludingRemoved: number

Defined in types.ts:675arrow-up-right

numPeers

numPeers: number

Defined in types.ts:673arrow-up-right

numPinnedOrders

numPinnedOrders: number

Defined in types.ts:676arrow-up-right

peerID

peerID: string

Defined in types.ts:670arrow-up-right

pubSubTopic

pubSubTopic: string

Defined in types.ts:667arrow-up-right

rendezvous

rendezvous: string

Defined in types.ts:668arrow-up-right

secondaryRendezvous

secondaryRendezvous: string[]

Defined in types.ts:669arrow-up-right

startOfCurrentUTCDay

startOfCurrentUTCDay: Date

Defined in types.ts:678arrow-up-right

version

version: string

Defined in types.ts:666arrow-up-right

Interface: ValidationResults

Indicates which orders where accepted, which were rejected, and why.

Hierarchy

  • ValidationResults

Properties

accepted

accepted: AcceptedOrderInfo[]

Defined in types.ts:598arrow-up-right

rejected

rejected: RejectedOrderInfo[]

Defined in types.ts:599arrow-up-right

Interface: WethDepositEvent

Hierarchy

  • WethDepositEvent

Properties

owner

owner: string

Defined in types.ts:452arrow-up-right

value

value: BigNumber

Defined in types.ts:453arrow-up-right

Interface: WethWithdrawalEvent

Hierarchy

  • WethWithdrawalEvent

Properties

owner

owner: string

Defined in types.ts:441arrow-up-right

value

value: BigNumber

Defined in types.ts:442arrow-up-right

Last updated

Was this helpful?