Skip to content

Commit

Permalink
Merge branch 'develop' into feat/validate-evm-verify-forms
Browse files Browse the repository at this point in the history
  • Loading branch information
songwongtp committed Feb 11, 2025
2 parents f0cde4e + 5f599ef commit 0b585e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- [#1225](https://github.com/alleslabs/celatone-frontend/pull/1225) Validate EVM Verification form options
- [#1225](https://github.com/alleslabs/celatone-frontend/pull/1225) Validate EVM verification form options
- [#1226](https://github.com/alleslabs/celatone-frontend/pull/1226) Show nonce on EVM tx details
- [#1223](https://github.com/alleslabs/celatone-frontend/pull/1223) Support Vyper on EVM contract details
- [#1220](https://github.com/alleslabs/celatone-frontend/pull/1220) Add EVM contract verification for Solidity with contract code (flattened method)
- [#1219](https://github.com/alleslabs/celatone-frontend/pull/1219) Add tooltip to full editor sidebar
Expand Down
1 change: 1 addition & 0 deletions src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export const EvmTxInfo = ({
showCopyOnHover
/>
</LabelText>
<LabelText label="Nonce">{evmTxData.tx.nonce.toFixed(0)}</LabelText>
<LabelText label="Amount">
<TokenImageWithAmount token={evmTxValue} hasTrailingZeros={false} />
</LabelText>
Expand Down
7 changes: 5 additions & 2 deletions src/lib/pages/evm-tx-details/components/EvmTxInfoMobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,13 @@ export const EvmTxInfoMobile = ({
fixedHeight={false}
/>
</LabelText>
<LabelText flex={1} label="Amount">
<TokenImageWithAmount token={evmTxValue} hasTrailingZeros={false} />
<LabelText flex={1} label="Nonce">
{evmTxData.tx.nonce.toFixed(0)}
</LabelText>
</Flex>
<LabelText flex={1} label="Amount">
<TokenImageWithAmount token={evmTxValue} hasTrailingZeros={false} />
</LabelText>
<EvmTxGasReceipt gasInfo={gasInfo} />
</Container>
);
Expand Down

0 comments on commit 0b585e9

Please sign in to comment.