You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: design/02_On_Chain_Quotes.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,14 +160,14 @@ uint64 expiryTime; // The unix time, in seconds, after which this quote s
160
160
161
161
### Quote - Version 2
162
162
163
-
This introduces a new Quote version to the [Executor spec](../README.md#api--database-schema).
164
-
165
-
<aside>
166
-
⚠️ TBD if the `baseFee`, `destinationGasPrice`, `sourcePrice`, and `destinationPrice` fields should be required akin to `EQ01`. We are assessing the additional cost to implement this or provide an equivalent way to gather this data off-chain.
167
-
</aside>
163
+
This introduces a new Quote version to the [Executor spec](../README.md#api--database-schema). It has the same body as `EQ01` sans signature. This is useful for parsing and validating off-chain.
168
164
169
165
```solidity
170
166
Header header // prefix = "EQ02"
167
+
uint64 baseFee // The base fee, in sourceChain native currency, required by the quoter to perform an execution on the destination chain
168
+
uint64 destinationGasPrice // The current gas price on the destination chain
169
+
uint64 sourcePrice // The USD price, in 10^10, of the sourceChain native currency
170
+
uint64 destinationPrice // The USD price, in 10^10, of the destinationChain native currency
0 commit comments