-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fixes & chain improvements #98
base: main
Are you sure you want to change the base?
Conversation
96b6fde
to
b3f1b8b
Compare
45f9131
to
3da7d53
Compare
import { NonEVMKeysCard } from './NonEVMKeysCard' | ||
import { useNonEvmAccountsQuery } from 'src/hooks/queries/useNonEvmAccountsQuery' | ||
|
||
const SCHEMAS = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm this seems weird, does graphql not provide the typings?
I guess you have to do the backend change first.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can fields also have doc metadata in graphql? If I can get the key name and field names through metadata then that would be great since new tables could be added with core only changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh cool, looks like I can use annotations: https://stackoverflow.com/questions/39962867/how-do-i-add-a-description-to-a-field-in-graphql-schema-language
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah i see what you are trying to do, trying to build a dynamic table, okay this make sense!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh cool, looks like I can use annotations: https://stackoverflow.com/questions/39962867/how-do-i-add-a-description-to-a-field-in-graphql-schema-language
hmm never done it before, let me know what you find haha
}, | ||
solanaKeys: { | ||
title: 'Solana', | ||
fields: [{ label: 'Public Key', key: 'id', copy: true }], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since each key always have { label: 'Public Key', key: 'id', copy: true }
, i wonder if we always have it in the table instead, so we dont have to specify this for every new chain key?
Look good overall from what i can see, however i never really worked on other areas except the chain config page |
Quality Gate failedFailed conditions See analysis details on SonarQube Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
onchainSigningStrategy
to workflows