Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CFE-381]: Feature - bonded changes transaction #831

Merged
merged 25 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cb930e3
refactor(types): update zod validation schema to apply with new api spec
Poafs1 Mar 18, 2024
bbd8b7a
feat: update changelog
Poafs1 Mar 18, 2024
ca5bc6c
feat(components): add bonded token changes delegation related transac…
Poafs1 Mar 19, 2024
0a0ae17
feat: update changelog
Poafs1 Mar 19, 2024
3d0fc9b
feat(components): delegation related transactions mobile card view
Poafs1 Mar 19, 2024
3fe2429
feat(components): update related transactions table fraction
Poafs1 Mar 19, 2024
11e764d
Merge pull request #832 from alleslabs/feature/cfe-52-bonded-transact…
evilpeach Mar 19, 2024
e29fde0
refactor(components): bonded token change add link to transactions tab
Poafs1 Mar 19, 2024
468a047
feat: update changelog
Poafs1 Mar 19, 2024
3b02540
feat(components): fix pr comments
Poafs1 Mar 20, 2024
40bb9c4
feat(components): fix acceptance test ui
Poafs1 Mar 20, 2024
c8c2ada
feat(components): change button to ghost variant
Poafs1 Mar 20, 2024
184e8f0
feat(components): use button size md instead of sm
Poafs1 Mar 20, 2024
f401814
Merge branch 'feature/cfe-35-voting-power-overview' into feature/cfe-…
Poafs1 Mar 20, 2024
24945a2
feat(components): fix pr comments
Poafs1 Mar 20, 2024
bcc03e7
feat(components): fix pr comments
Poafs1 Mar 21, 2024
cc23206
Merge branch 'feature/cfe-35-voting-power-overview' into feature/cfe-…
Poafs1 Mar 21, 2024
492ee23
feat(components): fix pr comments
Poafs1 Mar 21, 2024
32231dc
feat(components): fix pr comments
Poafs1 Mar 21, 2024
715999c
feat(components): fix pr comments
Poafs1 Mar 21, 2024
4a680e3
refactor(utils): totoken function test case
Poafs1 Mar 21, 2024
b1b2da4
feat(components): fix coin icon layout
Poafs1 Mar 21, 2024
ae64d18
Merge branch 'feature/cfe-35-voting-power-overview' into feature/cfe-…
Poafs1 Mar 21, 2024
10947c7
Merge pull request #833 from alleslabs/feature/cfe-37-current-bonded-…
evilpeach Mar 21, 2024
baa08bc
feat(components): fix related transaction table props
Poafs1 Mar 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const BondedTokenChanges = ({
navigate({
pathname: "/txs/[txHash]",
query: { txHash: txHash.toUpperCase() },
replace: true,
});

const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
coinToTokenWithValue,
formatPrice,
formatUTokenWithPrecision,
getTokenLabel,
} from "lib/utils";

interface RelatedTransactionsBondedTokenChangesProps {
Expand Down Expand Up @@ -43,7 +44,7 @@ export const RelatedTransactionsBondedTokenChanges = ({
>
{formattedAmount}
</Text>{" "}
Poafs1 marked this conversation as resolved.
Show resolved Hide resolved
{token.symbol}
{` ${getTokenLabel(token.denom, token.symbol)}`}
</Text>
<Text variant="body3" color="text.dark">
{token.value
Expand Down