Skip to content

Commit

Permalink
Read raw value (#1544)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonah Lin <[email protected]>
  • Loading branch information
bigboydiamonds and bigboydiamonds authored Nov 8, 2023
1 parent d55889c commit 1d27fee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const MostRecentTransaction = () => {
startedTimestamp={transaction?.fromInfo?.time as number}
transactionHash={transaction?.fromInfo?.txnHash as string}
transactionType={TransactionType.PENDING}
originValue={transaction?.fromInfo?.formattedValue as number}
originValue={transaction?.fromInfo?.value as number}
originChain={CHAINS_BY_ID[transaction?.fromInfo?.chainID] as Chain}
destinationChain={
CHAINS_BY_ID[transaction?.fromInfo?.destinationChainID] as Chain
Expand Down Expand Up @@ -223,8 +223,8 @@ export const MostRecentTransaction = () => {
transactionHash={transaction?.fromInfo?.txnHash as string}
kappa={transaction?.kappa as string}
transactionType={TransactionType.PENDING}
originValue={transaction?.fromInfo?.formattedValue as number}
destinationValue={transaction?.toInfo?.formattedValue as number}
originValue={transaction?.fromInfo?.value as number}
destinationValue={transaction?.toInfo?.value as number}
originChain={CHAINS_BY_ID[transaction?.fromInfo?.chainID] as Chain}
destinationChain={
CHAINS_BY_ID[transaction?.fromInfo?.destinationChainID] as Chain
Expand Down

0 comments on commit 1d27fee

Please sign in to comment.