We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22188f commit 80eba8bCopy full SHA for 80eba8b
packages/eip-5792-middleware/src/hooks/processSendCalls.ts
@@ -512,7 +512,7 @@ function validateAuxFundsSupportAndRequiredAssets({
512
if (!isSupportedAccount) {
513
throw new JsonRpcError(
514
EIP5792ErrorCode.UnsupportedNonOptionalCapability,
515
- `Unsupported non-optional capabilities: ${SupportedCapabilities.AuxiliaryFunds}`,
+ `Unsupported non-optional capability: ${SupportedCapabilities.AuxiliaryFunds}`,
516
);
517
}
518
@@ -596,7 +596,7 @@ function dedupeAuxiliaryFundsRequiredAssets(sendCalls: SendCallsPayload): void {
596
597
return {
598
...group[0],
599
- amount: add0x(totalAmount.toString(16)) as Hex,
+ amount: add0x(totalAmount.toString(16)),
600
};
601
});
602
0 commit comments