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 050343b commit 26ffd84Copy full SHA for 26ffd84
safe-transaction/src/index.js
@@ -62,13 +62,17 @@ async function run() {
62
63
core.info(`🔐 Transaction signed with hash: ${safeTxHash}`);
64
65
+ // Debug: Log transaction data structure
66
+ core.info(`📋 Safe Transaction Data: ${JSON.stringify(safeTransaction.data, null, 2)}`);
67
+
68
// Propose transaction to the service
69
await apiKit.proposeTransaction({
70
safeAddress: safeAddress,
71
safeTransactionData: safeTransaction.data,
72
safeTxHash: safeTxHash,
73
senderAddress: wallet.address,
74
senderSignature: signature.data,
75
+ origin: 'GitHub Actions Safe Transaction Workflow',
76
});
77
78
core.info("📤 Transaction proposed to Safe service");
0 commit comments