Skip to content

Commit a5efece

Browse files
handle bigint in transaction data
Signed-off-by: Agustín Ramiro Díaz <agustin.ramiro.diaz@gmail.com>
1 parent ab9e6bd commit a5efece

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/plugin-genlayer/src/actions/getTransaction.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,15 @@ export const getTransactionAction: Action = {
4242
});
4343

4444
elizaLogger.success("Successfully retrieved transaction details");
45-
elizaLogger.debug("Transaction details:", result);
45+
elizaLogger.success("Transaction details:", result);
4646
await callback(
4747
{
48-
text: `Transaction details: ${JSON.stringify(result, null, 2)}`,
48+
text: `Transaction details: ${JSON.stringify(
49+
result,
50+
(_key, value) =>
51+
typeof value === "bigint" ? Number(value) : value,
52+
2
53+
)}`,
4954
},
5055
[]
5156
);

0 commit comments

Comments
 (0)