We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9144cf commit 2166616Copy full SHA for 2166616
packages/plugin-coinbase/src/plugins/tokenContract.ts
@@ -507,7 +507,11 @@ export const readContractAction: Action = {
507
elizaLogger.info("Contract read result:", serializedResult);
508
509
callback({
510
- text: `Contract read successful: ${JSON.stringify(serializedResult, null, 2)}`
+ text: `Contract read successful:
511
+- Contract Address: ${contractAddress}
512
+- Method: ${method}
513
+- Network: ${networkId}
514
+- Result: ${JSON.stringify(serializedResult, null, 2)}`
515
}, []);
516
517
} catch (error) {
0 commit comments