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; } ```