Thursday, September 28, 2023
CryptoMasInfo
No Result
View All Result
  • Home
  • Crypto News
  • Bitcoin
  • Altcoin
  • Blockchain
  • DeFi
  • Ethereum
  • Dogecoin
  • Mining
  • ETF
  • More
    • Market & Analysis
    • NFT
    • WEB-3.0
    • XRP
CryptoMasInfo
No Result
View All Result
Home WEB-3.0

How to market make and transact with Hashflow

Adm1n by Adm1n
October 19, 2022
in WEB-3.0
0
How to market make and transact with Hashflow
189
SHARES
1.5k
VIEWS
Share on FacebookShare on Twitter

Related articles

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

S21 Miner Makes its Debut at WDMS for the First Time, with BitFuFu Among the First Public Online Sales Platforms – CryptoSlate

September 28, 2023
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

ANVI selects Reltime to bring Web3 Mobile Financial Services to … – PR Newswire

September 28, 2023


There was an increase within the quantity of DeFi merchants lately which has resulted in additional decentralized exchanges (DEXs) being dropped at the market as effectively.

Web3 is rising its impression on main industries, and the buying and selling business just isn’t exception. We had seen the deficiencies in centralized exchanges like a scarcity of transparency, insecurity, monetary exclusiveness, and privateness, and this has offered the necessity for DEXs.

DEX is a method of exchanging cryptocurrencies with none middleman like brokers or third events. They observe a special strategy from centralized exchanges by counting on sensible contracts to deal with transactions peer-to-peer.

The enterprise mannequin focuses on privateness for its customers the place transactions are carried out anonymously, although the transaction particulars are saved on the blockchain.

We’ve quite a lot of DEX platforms in the marketplace, like Coinbase and Binance, however on this article, we are going to concentrate on Hashflow.

We are going to take a look at how merchants are related with pinpoints by way of a Hashflow token, the way it works otherwise from others, market make, and commerce.

What’s Hashflow and what’s its objective?

To begin with, Hashflow is thought for its bridge-less cross-chain swaps, which implies it’s extremely interoperable, has zero slippage, and no MEV.

That is doable as a result of Hashflow ensures market makers signal the value quotes so it stays unchanged through the commerce.

Liquidity suppliers and merchants are related with skilled market makers on Hashflow and its core options supply higher flexibility for its market makers — no slippage, MEV resistant, higher value quotes, and a less expensive buying and selling price are all benefits of it.

All of the above talked about are solely doable due to the structure Hashflow makes use of, which is the Pool-based structure.

How Hashflow works

Beginning with a transaction, the person has to attach his pockets to Hashflow, enter a quantity they wish to commerce, after which a quote is exhibited to them.

If the person accepts, the order is submitted and that transaction is verified and added to the Hashflow community (or blockchain). On the opposite finish, there are maker markets that cope with the issuing of value quotes which the person had already accepted.

The market maker then indicators the commerce and it’s executed with out slippage (no matter order was submitted by the person stands). In contrast to different DEXs, which do normally have AMMs (Automated Market Maker) that handles market making and property pricing on-chain utilizing Lazy Liquidity Provision, Hashflow goes historically similar to the order-book mechanism.

The pricing is finished off-chain however the commerce is executed on-chain.

Hashflow was in 2021 and has grown considerably, providing one of the best costs due to its optimized gasoline price and nil slippage. As of the time of this text being printed, Hashflow at present helps bridge-less cross-chain swaps which makes you provoke a swap on EVM appropriate chains, and it’s anticipated to incorporate Solana integration, sensible order Routing, gasless buying and selling, restrict orders, and Hashverse in future.

In abstract, Hashflow is a DeFi protocol which serves as a decentralized change operating on the Ethereum blockchain.

Hashflow tokens

Hashflow supplies its token referred to as the HFT (Hashflow token), which is an ERC-20 on the Ethereum chain deployed on December 22, 2021. With one billion items of HFT in provide, Hashflow distributed this cryptocurrency on this method: 19% to the core workforce; 25% to the early traders; and 56% to the ecosystem. An extra 6.75% can be given to early customers as a reward.

Hashflow Allocation

The Hashflow NFT, which can be referred to as the Hashbots, can be used within the Hashverse that can be launched in future. NFT holders will obtain HFT that tallies to the worth of the NFT, as a result of every NFT could have an HFT worth. And Hashflow states that after 4 years, 5% of HFT can be issued to the group.

Find out how to market make

Market markers are basically vital in Hashflow and available in the market as an entire. They’re the liquidity suppliers that make the market useful by shopping for and promoting property. This doesn’t imply that they’ll purchase and promote at anytime instantly, however they’re at all times on standby, prepared to purchase and promote.


Extra nice articles from LogRocket:


In most decentralized exchanges, the market makers are automated and sensible contracts are deployed to seek out market pairs in AMMs (Automated Market Makers) however they’re liable to assaults and likewise a bit laggy as a result of the value quotes are dealt with on-chain.

In Hashflow, the market makers are corporations, establishments, or people which are given the privilege to make these market choices utilizing their professionalism, and that is finished off-chain, which in flip reduces gasoline charges and slippage, as talked about earlier.

To market make on Hashflow, we are going to observe the steps beneath. Integrating with Hashflow as a market maker is kind of easy.

Connect with WebSocket

You will have to hook up with the WebSocket from Hashflow API simply as you see on line 10 beneath. And also you would possibly must contact the workforce on Telegram or Discord to be added to the allowlisted makers.

const PING_PONG_INTERVAL_MS = 30000;
const PING_PONG_GRACE_PERIOD_MS = 1000;

perform getWebsocketConnection(
  marketMakerName,
  onMessageCallBack,
  onCloseCallback,
  onHeartbeatCallback,
) {
  const ws = new WebSocket(`${course of.env.HASHFLOW_WS_API}/maker/v1`, {
    headers: { marketmaker: marketMakerName, }
  });
  const heartbeat = () => {
    if (ws.pingTimeout) {
      clearTimeout(ws.pingTimeout);
    }
    ws.pingTimeout = setTimeout(() => {
      ws.terminate();
    }, PING_PONG_INTERVAL_MS + PING_PONG_GRACE_PERIOD_MS);

    onHeartbeatCallback();
  }
  ws.on('open', heartbeat);
  ws.on('ping', heartbeat);
  ws.on('message', message => onMessageCallBack(message));

  ws.on('shut', () => {
    if (ws.pingTimeout) {
      clearTimeout(ws.pingTimeout);
    }
    setTimeout(() => {
      ws.removeAllListeners();
      onCloseCallback();
    }, 5000);
  });

  ws.on('error', err => {});

  ws.on('unexpected-response', (_, res) => {
    let message="";
    res.on('information', (chunk) => {
      message += chunk;
    });
    res.on('finish', () => {
      if (res.statusCode === 401) {
        logger.error(`WS entry not approved. ${message}`);
      } else {
        logger.error(`Unexpexted response from server: [${res.statusCode}] ${message}.`);
      }
      ws.shut()
    });
  });
  return ws;
}

And Hashflow is related to you, as seen within the following:

// TODO: Exchange this along with your market maker title (as soon as added to the backend)
const MARKET_MAKER_NAME = 'TestMM';
// TODO: Set true if you wish to MM on 1inch, and many others – and have signed authorized agreements
const SUPPORT_AGGREGATORS = false;
const levelsInterval = SUPPORT_AGGREGATORS 
  ? setInterval(() => publishPriceLevels(mainSocket), 1000)
  : undefined;
const onMessageCallback = message => processMessage(mainSocket, message);
const onHeartbeatCallback = () => {
  for (const networkId of Object.keys(SUPPORTED_PAIRS)) {
    sendMessage(mainSocket, 'subscribeToTrades', { networkId, pool: POOL });
  }
};
const onCloseCallback = () => {
  if (SUPPORT_AGGREGATORS) {
    clearInterval(levelsInterval);
  }
  mainSocket = connectToHashflow();
};

const connectToHashflow = () => {
  return getWebsocketConnection(
    MARKET_MAKER_NAME,
    onMessageCallback,
    onCloseCallback,
    onHeartbeatCallback,
  );
}
let mainSocket = connectToHashflow();

The ‘TestMM’ is changed with yours after contacting the workforce. You also needs to seek advice from this pattern codebase to see how to hook up with the WebSocket from Hashflow.

Create a Pool

You will have to hook up with your pockets after connecting to the WebServer to create a Pool that may supply quotes.

To do that, head over utilizing this link and fill in your Pool title, signer handle, and at last determine if you would like your Pool to be public or personal. After finishing the method, it’s best to get a web page like this:

MIB Pool

Obtain RFQ and reply with quote

Now to the attention-grabbing half; Hashflow receives a request-for-quote from a person after they need to commerce to our server which then provides the info to the required market maker:

{
  "messageType": "rfq",
  "message": {
    // It is a distinctive RFQ ID -- it's good to use this when sending again a quote.
    "rfqId": string,

    // This can be one thing like: hashflow, 1inch. That is helpful
    // since 1inch cost charges for his or her trades
    "supply": string,

    // 1 for ETH L1
    "networkId": quantity,

    // Base token (the token the dealer sells).
    "baseToken": string,  // contract handle
    "baseTokenName": string,  // token title (e.g. USDC, ETH, ...)
    "baseTokenNumDecimals": quantity,  // token decimals (e.g. DAI: 18, USDC: 6)

    // Quote token (the token the dealer buys).
    "quoteToken": string,  // contract handle
    "quoteTokenName": string,  // token title (e.g. USDC, ETH, ...)
    "quoteTokenNumDecimals": quantity,  // token decimals (e.g. DAI: 18, USDC: 6)


    // Precisely one of many following fields can be current within the RFQ.
    // If baseTokenAmount is current, quoteTokenAmount must be stuffed by the quote.
    // If quoteTokenAmount is current, baseTokenAmount must be stuffed by the quore.
    // Quantities are in decimals, e.g. "1000000" for 1 USDT.
    "baseTokenAmount": ?string,
    "quoteTokenAmount": ?string,

    // The dealer pockets handle that may swap with the contract. This generally is a proxy
    // contract (e.g. 1inch)
    "dealer": string,

    // The pockets handle of the particular dealer (e.g. finish person pockets for 1inch).
    // That is useful in an effort to perceive person habits.
    // If effectiveTrader just isn't current, you'll be able to assume that dealer == effectiveTrader.
    "effectiveTrader": ?string,
  }
}

And based mostly in your carried out logic in your codebase, a quote is returned to the person on this format as effectively:

{
  "messageType": "quote",
  "message": {
    "rfqId": string,  // This must be the identical rfqId that was despatched by the server
    "pool": string,  // This must be the contract handle of the pool.

    // That is non-compulsory. If utilizing an EOA (externally owned account), this could 
    // include the pockets handle of the EOA. 
    // The EOA must have allowance set to the Pool.
    "eoa": ?string,

    // Identical as RFQ
    "baseToken": string,
    "quoteToken": string,

    // Quantities are in decimals.
    "baseTokenAmount": string,
    "quoteTokenAmount": string,

    // Set this to "0" for personal pool / EOA buying and selling.
    "charges": string,

    // The unix timestamp when the quote expires, in seconds.
    "quoteExpiry": quantity,
  }
}

Help signing quotes

This solely occurs if the person doesn’t provide a selected market maker, and in that context Hashflow will make a request for a quote from all market makers and picks one of the best one.

When one of the best quote is picked, we ship a signQuote message kind again to the market maker for them to signal (get a signature from them). The request can be on this format:

  "messageType": "signQuote",
  "message": {
    // The RFQ ID that generated the quote.
    "rfqId": string,
    "networkId": quantity,  // The chain ID (e.g. 1 for Ethereum mainnet)
    "quoteData": {
      "txid": string,  // Distinctive identifier of the quote -- completely different from the RFQ ID.

      "pool": string,
      "eoa": string,

      "baseToken": string,
      "quoteToken": string,

      "baseTokenAmount": string,
      "quoteTokenAmount": string,

      "charges": string,

      "quoteExpiry": quantity,

      // The account that can be executing the swap. For 1inch, that is the 1inch proxy.
      "dealer": string,
      // Dealer really executing the swap, if completely different from 'dealer'.
      "effectiveTrader": ?string,

      // The next parameter is inside to hashflow contracts.
      // It's leveraged to mitigate quote replay.
      "nonce": quantity
    }
  }
}

Get the primary signed RFQ

You’ll be able to check your WebServer to see in the event you get a signed RFQ from it by making a request to Hashflow’s staging API with the next physique params as a pattern:

POST https://api-staging.hashflow.com/taker/v1/quote/signedRfq


{
    "networkId": 42,  // 42 is Kovan, 1 is Mainnet
    "supply": "hashflow", 
    "baseToken": "0x07de306ff27a2b630b1141956844eb1552b956b5",  // USDT (Kovan)
    "quoteToken": "0xa0a5ad2296b38bd3e3eb59aaeaf1589e8d9a29a9",  // WBTC (Kovan)
    "dealer": "0x2150DD462B496bd5e4A37b5411c13319427BE83E",
    "baseTokenAmount": "1000000",
    "marketMaker": "TestMM"  // remember to vary this
}

When you get a response, then your market maker is ready. You also needs to seek advice from the documentation for extra edge instances.

Conclusion

On this article, we centered on demystifying the connection between Hashflow, its customers, and market makers and the important thing elements of Hashflow — specifically, that it presents bridgeless cross-chain swaps and off-chain market choices; i.e., quotes are finished with out automated makers.

Hashflow is bringing the multichain world nearer to us simply as Vitalik of Ethereum had speculated. We hope to get extra Hashflow assist for different chains as that is at present underneath mass adoption. To additionally view its metric, head over to this dashboard.

Be part of organizations like Bitso and Coinsquare who use LogRocket to proactively monitor their Web3 apps

Consumer-side points that impression customers’ means to activate and transact in your apps can drastically have an effect on your backside line. In case you’re eager about monitoring UX points, mechanically surfacing JavaScript errors, and monitoring gradual community requests and element load time, try LogRocket.LogRocket Dashboard Free Trial Bannerhttps://logrocket.com/signup/

LogRocket is sort of a DVR for net and cell apps, recording every part that occurs in your net app or website. As a substitute of guessing why issues occur, you’ll be able to combination and report on key frontend efficiency metrics, replay person classes together with utility state, log community requests, and mechanically floor all errors.

Modernize the way you debug net and cell apps — Start monitoring for free.



Source link

Tags: Hashflowmarkettransact
Share76Tweet47

Related Posts

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

S21 Miner Makes its Debut at WDMS for the First Time, with BitFuFu Among the First Public Online Sales Platforms – CryptoSlate

by Adm1n
September 28, 2023
0

S21 Miner Makes its Debut at WDMS for the First Time, with BitFuFu Among the First Public Online Sales Platforms  CryptoSlate...

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

ANVI selects Reltime to bring Web3 Mobile Financial Services to … – PR Newswire

by Adm1n
September 28, 2023
0

ANVI selects Reltime to bring Web3 Mobile Financial Services to ...  PR Newswire Source link

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Prime Bank empowering the nation with digital innovations – The Business Standard

by Adm1n
September 27, 2023
0

Prime Bank empowering the nation with digital innovations  The Enterprise Normal Source link

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Need to create ‘interoperable, commercially viable’ solutions as 5G matures: GSMA’s Mats Granryd – ETTelecom

by Adm1n
September 27, 2023
0

Need to create ‘interoperable, commercially viable’ solutions as 5G matures: GSMA’s Mats Granryd  ETTelecom Source link

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Is Pepe Going on Another Bull Run? PEPE Surges 5% While Crypto … – Cryptonews

by Adm1n
September 26, 2023
0

Is Pepe Going on Another Bull Run? PEPE Surges 5% While Crypto ...  Cryptonews Source link

Load More
  • Trending
  • Comments
  • Latest
Binance’s CZ Confirms Participating as Equity Investor in Musk’s Twitter Takeover

Binance’s CZ Confirms Participating as Equity Investor in Musk’s Twitter Takeover

October 28, 2022
USDC Lost 20% Of Its Market Capitalization In The Last 30 Days

USDC Lost 20% Of Its Market Capitalization In The Last 30 Days

October 26, 2022
Quant, XRP, and THESE Cryptos are still set to PUMP into 2022

Quant, XRP, and THESE Cryptos are still set to PUMP into 2022

October 29, 2022
Cathie Wood’s ARK Fintech Innovation ETF Buys More Coinbase

Cathie Wood’s ARK Fintech Innovation ETF Buys More Coinbase

October 25, 2022
Ripple Launches Test Phase For Ethereum Based Smart Contracts On The XRPL

Ripple Launches Test Phase For Ethereum Based Smart Contracts On The XRPL

0
3 Crypto Predictions for 2023

3 Crypto Predictions for 2023

0
Cool Cats Lands On Its Feet And Does It In Style

Cool Cats Lands On Its Feet And Does It In Style

0
Waves price analysis: WAVES loses value at $3.49 after a bearish run

Waves price analysis: WAVES loses value at $3.49 after a bearish run

0
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Bitcoin, Ethereum Rally Following Latest ETH Futures ETF Application, Where Next? – DailyFX

September 28, 2023
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Toncoin (TON): Does the Reward Outweigh the Risks? – InvestorsObserver

September 28, 2023
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

S21 Miner Makes its Debut at WDMS for the First Time, with BitFuFu Among the First Public Online Sales Platforms – CryptoSlate

September 28, 2023
Texas takes the cake in U.S. Bitcoin mining, here’s how

Texas takes the cake in U.S. Bitcoin mining, here’s how

September 28, 2023

Recent News

BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Bitcoin, Ethereum Rally Following Latest ETH Futures ETF Application, Where Next? – DailyFX

September 28, 2023
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

Toncoin (TON): Does the Reward Outweigh the Risks? – InvestorsObserver

September 28, 2023
BlockJoy Secures Nearly $11 Million From Gradient Ventures, Draper Dragon, Active Capital and More To Launc… – The Daily Hodl

S21 Miner Makes its Debut at WDMS for the First Time, with BitFuFu Among the First Public Online Sales Platforms – CryptoSlate

September 28, 2023

Categories

  • Altcoin
  • Bitcoin
  • Blockchain
  • Crypto News
  • DeFi
  • Dogecoin
  • ETF
  • Ethereum
  • Market & Analysis
  • Mining
  • NFT
  • WEB-3.0
  • XRP

Crypto Calculator

Cryptocurrency Prices 

© 2022 CryptoMasInfo

No Result
View All Result
  • Home
  • Crypto News
  • Bitcoin
  • Altcoin
  • Blockchain
  • DeFi
  • Ethereum
  • Dogecoin
  • Mining
  • ETF
  • More
    • Market & Analysis
    • NFT
    • WEB-3.0
    • XRP

© 2022 CryptoMasInfo