Accept RFQ quote

Endpoint for sellers (depositors) to accept an RFQ quote for a validator set in the validator marketplace.

import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')

const rfqId = 'rfq-id-1234'
const quoteId = '1234'

const result = await api.validatorMarketplaceSellers.acceptQuote(rfqId, quoteId)

if (result.status === 200) {
    console.log('Quote accepted successful
  }
Language
Click Try It! to start a request and see the response here!