From 206a1b5527e32c68336a34df689cda435e916ba5 Mon Sep 17 00:00:00 2001 From: marshacb Date: Mon, 23 Sep 2024 09:48:10 -0400 Subject: [PATCH] add dryRunCall and xcmFeeAsset to TransferArgsOpts in readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3a767665..2865e076 100644 --- a/README.md +++ b/README.md @@ -238,6 +238,15 @@ interface TransferArgsOpts { * Defaults to `Xcm(vec![DepositAsset { assets: Wild(AllCounted(assets.len())), beneficiary }])` */ customXcmOnDest?: string; + /** + * Optionally allows for dry running the constructed tx in order get the estimated fees and execution result. + */ + dryRunCall?: boolean; + + /** + * Optional assetId that will be used to pay for fees. Used with the `dryRunCall` option to determine fees in the specified asset. + */ + xcmFeeAsset?: string; } ```