Makers
Makers run web servers that implement APIs like RFQ and LastLook using JSON-RPC over HTTP or WebSocket. To be reachable by clients, servers run at public endpoints with CORS enabled. To become discoverable, server URLs are added to the Registry smart contract, which is queried by clients.
Introduction
AirSwap liquidity providers are makers, generally online and quoting, with takers on the other side of each trade. At the lower protocol level, where the software used by makers and takers interacts with Ethereum, there are signers, who set and cryptographically sign terms (an order), and senders who submit those terms for settlement on the Swap contract.
For the RFQ protocol, a server is always the signer and the client is always the sender. For LastLook, the client is always the signer and a server is always the sender.
Nonces are unique identifiers for swaps and used for cancels. They should be generated incrementally but might execute out of order.
URLs may be to either HTTP or WebSocket servers using
httpsorwssrespectively.Registry is used to signal that a server is available to trade specific tokens, including contact information (URL), without pricing.
HTTP vs WebSocket
If a URL is HTTPS, it implies that the server supports the latest RFQ protocol at that endpoint. If a URL is WebSocket (wss) then the server communicates its supported protocols upon connnection. See the setProtocols method of the Request for Quote and LastLook protocols for details. WebSocket servers can support both RFQ and LastLook protocols.
Getting Started
Getting started is as easy as standing up a JSON-RPC web server and adding its URL to the Registry.
Check out the reference server for inspiration.
Servers generally implement the RFQ protocol at minimum.
You can debug your server with the CLI or via curl.
When ready, add your server to the Registry by calling setURL, addTokens, and addProtocols.
Registry staking requirements are as follows (stakingCost, supportCost).
ETH: 100K AST, 100 AST
BSC: 0.1 WBNB, 0.001 WBNB
POLYGON: 100 WMATIC, 1 WMATIC
AVALANCHE: 1 WAVAX, 0.01 WAVAX
LINEA: 0.05 WETH, 0.0005 WETH
Registry enables servers to signal support for multiple protocols with addProtocols.
RequestForQuoteERC20 (0x02ad05d3)
LastLookERC20 (0x395ca9f1)
IndexingERC20 (0x85ccc7d5)
Indexing = (0x9498325a)
Discovery (0xf3713ede)
Protocol Fees
When signing orders in RFQ, a protocol fee (in basis points) is hashed into the signature and verified during settlement. The value of this parameter must match its current value of protocolFeeLight on the SwapERC20 contract. The amount is transferred from the signerWallet address upon settlement.
100% of protocol fees go toward rewarding AirSwap governance participants and project contributors.
Handling Errors
Provide descriptive errors where possible. In the case of a server side error, return a JSON-RPC error response.
{
"jsonrpc": "2.0",
"id": 123,
"error": { "code": -33605, "message": "Rate limit exceeded" }
}The following are error codes in the JSON-RPC specification:
-32700Parse error-32600Invalid Request-32601Method not found-32602Invalid params-32603Internal error-32000 to -32099(Reserved for implementation-defined server-errors)
The following are AirSwap specific errors:
-33600Cannot provide the requested quote or order-33601Not trading the requestedsignerTokensenderTokenpair-33602The specifiedsenderAmountorsignerAmountis too low-33603The specifiedsenderAmountorsignerAmountis too high-33604Invalid request parameters-33605Rate limit exceeded-33700 to -33799(Reserved for implementation specific trading errors)
Testing with the Web App
To connect directly to your server via the Web App, construct a URL as follows.
https://swap.eth.limo/#/swap/:fromToken/:toToken?serverUrl=SERVER_URLfromTokenthe contract address of the senderToken (client).toTokenthe contract address of the signerToken (server).SERVER_URLa URL-encoded server URL to connect to including schema.
A complete example:
https://swap.eth.limo/#/swap/0xdac17f958d2ee523a2206206994597c13d831ec7/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?serverUrl=https%3A%2F%2Fmaker.com%2FapiTesting with the CLI
Ensure the AirSwap CLI is installed.
$ yarn global add airswapIn development, set the chain to 5 with the airswap chain command. The following examples assume a local development server is running at http://localhost:3000.
Several useful commands can help you debug your server:
airswap orderto request an order directly from your server. (RFQ)airswap compareto request an order from servers supporting a specific token pair. Once your server is on the registry it will be queried with this command. (RFQ)airswap streamto subscribe to a pricing stream and make orders for your server. (LastLook)
Adding to the Registry
The following steps (setURL, addTokens, and addProtocols) can be called directly on the Registry contract. Alternatively, you are welcome to use the CLI as follows.
$ yarn global add airswapOnce your server is up and running at a public URL, you're ready to add it to the Registry. First, ensure an account is set with the airswap account:import command. You can but are not required to use the same Ethereum account that your Server is using.
Let's take a look at the available Registry commands.
$ airswap registry
AirSwap CLI 5.0.3 — https://www.airswap.io/
add and remove supported tokens
USAGE
$ airswap registry:COMMAND
COMMANDS
registry:approve enable staking on the registry
registry:eject remove url, protocols, and tokens from registry
registry:list get urls from the registry
registry:revoke disable staking on the registry
registry:status check status of url, protocols, and tokens on registry
registry:url set server url on the registryFirst run the following command to enable staking for your account.
$ airswap registry:approveNext run the following command to set your server url on the registry.
$ airswap registry:urlNext run the following command to add tokens you support.
$ airswap tokens:addNext run the following command to add protocols you support.
$ airswap protocols:addTo ensure your configuration is correct, run the following.
$ airswap registry:statusNow that your server is running and has been added to the Registry, your quotes will be returned among results of the airswap compare command and aggregators like MetaMask Swaps.
$ airswap best
AirSwap CLI 5.0.0 — https://www.airswap.xyz/
get the best available order ETHEREUM
buy or sell: buy
amount: 0.1
of: weth
for: dai
Requesting from 7 peers... done
Quote from https://maker.example.com/
✨ Buy 0.1 WETH for 250 DAI
Price 0.0004 WETH/DAI (2500 DAI/WETH)Last updated