From a21df45591b42b540d6adc6842b12c4ebadaca72 Mon Sep 17 00:00:00 2001 From: Aditya Arora Date: Wed, 17 Sep 2025 11:45:55 -0400 Subject: [PATCH] fix(entropy-explorer) Fix cast command --- apps/entropy-explorer/src/components/Home/request-drawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/entropy-explorer/src/components/Home/request-drawer.tsx b/apps/entropy-explorer/src/components/Home/request-drawer.tsx index 070a83f000..de383fae62 100644 --- a/apps/entropy-explorer/src/components/Home/request-drawer.tsx +++ b/apps/entropy-explorer/src/components/Home/request-drawer.tsx @@ -249,7 +249,7 @@ const RequestDrawerBody = ({ }; const CallbackErrorInfo = ({ request }: { request: CallbackErrorRequest }) => { - const retryCommand = `cast send ${request.chain.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${request.provider} ${request.sequenceNumber.toString()} ${request.userContribution} ${request.randomNumber} -r ${request.chain.rpc} --private-key `; + const retryCommand = `cast send ${request.chain.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${request.provider} ${request.sequenceNumber.toString()} ${request.userContribution} ${request.providerContribution} -r ${request.chain.rpc} --private-key `; return ( <>