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

feat(app): show transfer traces and token details #3518

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
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
31 changes: 31 additions & 0 deletions app/src/lib/graphql/queries/transfer-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,42 @@ export const transfersBySourceHashBaseQueryDocument = graphql(/* GraphQL */ `
destination_connection_id
destination_channel_id
base_token
base_token_details {
decimals
denom
display_name
display_symbol
gas_token
logo_uri
origin
unwrapped_denom
}
base_token_name
base_token_symbol
base_amount
quote_amount
quote_token
quote_token_details {
decimals
denom
display_name
display_symbol
gas_token
logo_uri
origin
unwrapped_denom
}

traces {
type
height
block_hash
timestamp
transaction_hash
chain {
chain_id
}
}

# tokens {
# denom
Expand Down
Loading