@openrelay/sra-maker-element
v0.1.1
Published
A lit-element that lets the create a 0x order and submit it to a relayer
Downloads
3
Readme
layout: widget title: "SRA Order Maker" date: 2018-09-26 09:10:00 -0500 categories: widgets package: sra-maker-element code: html: |
<or-sra sra="#SRA_ENDPOINT#" feeRecipient="#FEE_RECIPIENT_ADDRESS#">
<or-sra-terms-of-use>
<or-sra-maker></or-sra-maker>
</or-sra-terms-of-use>
<span slot="net">42</span>
<span slot="net">1</span>
<span slot="netunsupported">At this time, this widget is only supported on Kovan and mainnet</span>
</or-sra>
npm: "@openrelay/sra-maker-element"
The maker element provides the user with all of the necessary inputs to make an
order and submit it to a relayer. The relayer it is submitted to may be changed
from the ancestor <or-sra>
element.
Note that the <or-sra-maker>
will not work until the terms of use have been
accepted, so in the above example we have wrapped it with the
<or-sra-terms-of-use>
tag.
API
JavaScript Properties
value
— The percentage of the to be paid by the taker, as an integer between 0 and 100.
Events
Outgoing Events
change
— Fired when the user changes the token. Theevent.details
object includes:- feeRecipient: The fee recipient address to be used for the order
- makerFee: A
BigNumber
indicating the number of base units of ZRX to be paid by the maker. - takerFee: A
BigNumber
indicating the number of base units of ZRX to be paid by the taker.