From adf726a46c2e2097bc927da4a17e1aaef73f8394 Mon Sep 17 00:00:00 2001 From: Abner Tudtud Date: Thu, 28 Mar 2024 13:12:00 +0800 Subject: [PATCH] Add transaction hash to event data --- src/Events/Substrate/Balances/Transfer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Events/Substrate/Balances/Transfer.php b/src/Events/Substrate/Balances/Transfer.php index 21be0335..488d4c56 100644 --- a/src/Events/Substrate/Balances/Transfer.php +++ b/src/Events/Substrate/Balances/Transfer.php @@ -18,6 +18,7 @@ public function __construct(Model $from, Model $to, string $amount, ?Model $tran $this->broadcastData = [ 'idempotencyKey' => $transaction?->idempotency_key, + 'transactionHash' => $transaction?->transaction_chain_hash, 'from' => $from->address, 'to' => $to->address, 'amount' => $amount,