post https://api.northstake.dk/v1/validatorMarketplace/sellers/documents
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)
📃
(SDK) Submitting an RFQ to the validator marketplace
Open Recipe