-
Notifications
You must be signed in to change notification settings - Fork 18
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
Update symbolMeta.ts #196
Update symbolMeta.ts #196
Conversation
Adding new token Spectre
WalkthroughThe pull request introduces a new token metadata entry for "SPC" (Spectre) in the Changes
Poem
Tip CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (1)ts-scripts/data/symbolMeta.ts (1)
Adding the token definition for "Spectre" (SPC) appears consistent with the surrounding metadata structure. However, please verify:
Run the script below to confirm there are no conflicting references or duplications of "SPC" in the codebase: ✅ Verification successfulLet me verify the decimals by checking the token metadata in the JSON files. Let me try a different approach to check the token metadata. Decimals and token metadata are correctly configured The verification shows that the SPC token configuration in
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Search for references to 'SPC' across the repo to ensure no collisions or conflicts.
rg "SPC"
Length of output: 2114 Script: #!/bin/bash
# Check token metadata in various JSON files for decimals information
cat tokens/externalTokens.json tokens/mainnet.json data/bankMetadata/mainnet.json | jq -c 'select(.symbol == "SPC" or .name == "SPC")'
Length of output: 347 Script: #!/bin/bash
# Check token metadata in JSON files with proper array handling
cat tokens/externalTokens.json | jq '.[] | select(.symbol == "SPC")'
cat tokens/mainnet.json | jq '.[] | select(.symbol == "SPC")'
cat data/bankMetadata/mainnet.json | jq '.[] | select(.symbol == "SPC")'
Length of output: 1264 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
can we consolidate the 3 PRs into one? Also can you please share more on your project? |
Hi, thanks for your response. Appreciate if you could guide me the way to consolidate everything into one. To be honest, I am new to github - still learning my ways. As for the project - Spectre aims to bridge the gap between meme and real world usecase. We intend to create an apparel marketplace where $SPC can be used for purchasing purposes. |
Adding new token Spectre
Summary by CodeRabbit