Skip to main content

Type Alias: StoredRfqRequest

type StoredRfqRequest =
| {
details: Partial<OptionDetailsWire>;
type: "terms";
}
| {
offerId: Id;
type: "chainRef";
};

Defined in: packages/overcast-core/src/storage/index.ts:124

Union Members

Type Literal

{
details: Partial<OptionDetailsWire>;
type: "terms";
}

RFQ terms are partial — an RFQ pins everything but the quoted premium.


Type Literal

{
offerId: Id;
type: "chainRef";
}