Pair

MatchingEngine contract manages API for trading on orderbook exchange. To trade on Standard, Solidity developers use IMatchingEngine interface to call its functions.

import {  } from "standardweb3"

function main() {
  const client = standardSocketIOClient("Ethereum");
  client.on("tick", (tick: any) => {
    console.log("tick", tick);
    // react to tick event with onchain transaction...
  });
}

Pair

Last updated