diff --git a/README.md b/README.md index 7c51ad12..85eb3171 100644 --- a/README.md +++ b/README.md @@ -266,6 +266,11 @@ interface TransferArgsOpts { * Optional assetId that will be used to pay for fees. Used with the `dryRunCall` option to determine fees in the specified asset. */ xcmFeeAsset?: string; + + /** + * Optionally manually sets the pallet you intend to you use for the current transaction. + */ + xcmPalletOverride?: XcmPallet; } ``` diff --git a/src/types.ts b/src/types.ts index ccfb052c..2c4b2e2e 100644 --- a/src/types.ts +++ b/src/types.ts @@ -362,7 +362,7 @@ export interface TransferArgsOpts { xcmFeeAsset?: string; /** - * Optionally manually set the pallet you intend to you use for the current transaction. + * Optionally manually sets the pallet you intend to you use for the current transaction. */ xcmPalletOverride?: XcmPallet; }