-
Notifications
You must be signed in to change notification settings - Fork 5
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
Display more fungible token details #14
Conversation
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.
LGTM. Just naming issues.
src/components/Token/TokenInfo.tsx
Outdated
})) | ||
} | ||
|
||
async function isTokenAllowAdditionalIssuance( |
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.
isAdditionalTokenIssuanceAllowed
src/components/Token/TokenInfo.tsx
Outdated
@@ -82,6 +113,8 @@ function TokenInfo() { | |||
) : ( | |||
'undefined' | |||
), | |||
Upgradable: `${tokenInfo?.upgradable}`, | |||
'Allow Additional Issuance': `${tokenInfo?.allowAdditionalIssuance}` |
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.
Additional Issuance Allowed
src/components/Token/TokenInfo.tsx
Outdated
@@ -82,6 +113,8 @@ function TokenInfo() { | |||
) : ( | |||
'undefined' | |||
), | |||
Upgradable: `${tokenInfo?.upgradable}`, |
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.
Token Contract Upgradable
No description provided.