We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9989c4e commit df8b383Copy full SHA for df8b383
dashboard/src/components/Accountant.tsx
@@ -152,7 +152,10 @@ const pendingTransferColumns = [
152
pendingTransferColumnHelper.accessor('data.0.tx_hash', {
153
header: () => 'Tx',
154
cell: (info) => (
155
- <ExplorerTxHash chain={info.row.original.key.emitter_chain} rawTxHash={info.getValue()} />
+ <ExplorerTxHash
156
+ chain={info.row.original.key.emitter_chain}
157
+ rawTxHash={'0x' + Buffer.from(info.getValue(), 'base64').toString('hex')}
158
+ />
159
),
160
}),
161
pendingTransferColumnHelper.accessor('data.0.signatures', {
0 commit comments