From 9c911d85839abdd2848f4b35d7f7004e1eba92fa Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Thu, 25 Sep 2025 19:51:00 +0200 Subject: [PATCH] Update api.mdx: sendBundle uuid --- docs/api.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/api.mdx b/docs/api.mdx index 7001a9f..034ceb3 100644 --- a/docs/api.mdx +++ b/docs/api.mdx @@ -37,11 +37,10 @@ This is useful for sending multiple transactions that depend on each other. blockNumber // String, A hex encoded block number for which this bundle is valid on. // Optional fields - replacementUuid // String, UUID that can be used to cancel/replace this bundle. - + uuid // String, unique ID which can be used to replace this bundle later with another one using the same uid. revertingTxHashes // Array[String], A list of tx hashes that are allowed to revert. droppingTxHashes // Array[String], A list of tx hashes that can be removed from the bundle if it's deemed useful (but not revert). - refundTxHashes // Array[String], A list of tx hashes (max 1) that should be considered for MEV refunds. If empty, defaults to the last transaction in the bundle. + refundTxHashes // Array[String], A list of tx hashes (max 1) that should be considered for MEV refunds. If empty, defaults to the last transaction in the bundle. minTimestamp // Number, The minimum timestamp for which this bundle is valid, in seconds since the unix epoch. maxTimestamp // Number, The maximum timestamp for which this bundle is valid, in seconds since the unix epoch.