Create a new RFQ

Endpoint to let sellers (depositors) create a new RFQ for a validator set in the validator marketplace. Sellers are required to have registered a number of necessary webhooks before creating RFQs in the validator marketplace

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

const newRFQ: CreateRFQRequest = {
    validator_indices: [123, 456, 789],
    payment_wallet_id: 'linked-wallet-id',
  }

const createdRFQ = await api.validatorMarketplaceSellers.createRFQ(newRFQ)

console.log(createdRFQ)
Language
Click Try It! to start a request and see the response here!