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)
Body Params
validator_indices
array of integers
required
validator_indices*
string
required
Responses

Language