Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
chore: update NTT packages and fix CreditCoin icon visibility
- Bump NTT packages from 3.0.1 to 3.0.2
- Fix CreditCoin chain and token icons using currentColor for theme compatibility
  • Loading branch information
DBosley committed Oct 6, 2025
commit 88521c678194daba180c421da738f20c85b7e084
82 changes: 41 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,20 @@
"@wormhole-foundation/sdk-base": "3.8.5",
"@wormhole-foundation/sdk-connect": "3.8.5",
"@wormhole-foundation/sdk-definitions": "3.8.5",
"@wormhole-foundation/sdk-definitions-ntt": "3.0.1",
"@wormhole-foundation/sdk-definitions-ntt": "3.0.2",
"@wormhole-foundation/sdk-evm": "3.8.5",
"@wormhole-foundation/sdk-evm-core": "3.8.5",
"@wormhole-foundation/sdk-evm-ntt": "3.0.1",
"@wormhole-foundation/sdk-evm-ntt": "3.0.2",
"@wormhole-foundation/sdk-icons": "3.8.5",
"@wormhole-foundation/sdk-route-ntt": "3.0.1",
"@wormhole-foundation/sdk-route-ntt": "3.0.2",
"@wormhole-foundation/sdk-solana": "3.8.5",
"@wormhole-foundation/sdk-solana-cctp": "3.8.5",
"@wormhole-foundation/sdk-solana-core": "3.8.5",
"@wormhole-foundation/sdk-solana-ntt": "3.0.1",
"@wormhole-foundation/sdk-solana-ntt": "3.0.2",
"@wormhole-foundation/sdk-sui": "3.8.5",
"@wormhole-foundation/sdk-sui-cctp": "3.8.5",
"@wormhole-foundation/sdk-sui-core": "3.8.5",
"@wormhole-foundation/sdk-sui-ntt": "3.0.1",
"@wormhole-foundation/sdk-sui-ntt": "3.0.2",
"@wormhole-labs/cctp-executor-route": "0.18.0",
"@wormhole-labs/wallet-aggregator-aptos": "1.3.0",
"@wormhole-labs/wallet-aggregator-core": "0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/config/mainnet/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const MAINNET_TOKENS: TokenConfig[] = [
},
},
{
symbol: 'wCTC',
symbol: 'WCTC',
decimals: 18,
icon: TokenIcon.CTC,
tokenId: {
Expand Down
4 changes: 2 additions & 2 deletions src/icons/Chains/CreditCoin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ function CreditCoin() {
viewBox="0 0 481 481"
>
<path
fill="#2D353F"
fill="currentColor"
d="M364.64 312.16C339.72 355.11 293.23 384 240 384c-79.53 0-144-64.47-144-144S160.47 96 240 96c53.29 0 99.81 28.95 124.71 71.97l31.16-18.04C364.73 96.17 306.59 60 240 60c-99.41 0-180 80.59-180 180s80.59 180 180 180c66.56 0 124.67-36.13 155.82-89.84l-31.18-18Z"
/>
<path
fill="#2D353F"
fill="currentColor"
d="M420 222H271.14c-6.23-10.75-17.83-18-31.14-18-19.88 0-36 16.12-36 36s16.12 36 36 36c13.32 0 24.92-7.25 31.14-18H420v-36Z"
/>
</svg>
Expand Down
4 changes: 2 additions & 2 deletions src/icons/Tokens/CTC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ function CTC() {
viewBox="0 0 481 481"
>
<path
fill="#2D353F"
fill="currentColor"
d="M364.64 312.16C339.72 355.11 293.23 384 240 384c-79.53 0-144-64.47-144-144S160.47 96 240 96c53.29 0 99.81 28.95 124.71 71.97l31.16-18.04C364.73 96.17 306.59 60 240 60c-99.41 0-180 80.59-180 180s80.59 180 180 180c66.56 0 124.67-36.13 155.82-89.84l-31.18-18Z"
/>
<path
fill="#2D353F"
fill="currentColor"
d="M420 222H271.14c-6.23-10.75-17.83-18-31.14-18-19.88 0-36 16.12-36 36s16.12 36 36 36c13.32 0 24.92-7.25 31.14-18H420v-36Z"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/coingecko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const NATIVE_TOKEN_IDS: Partial<Record<Chain, string>> = {
Ink: 'ethereum',
HyperEVM: 'hyperliquid',
HyperCore: 'usd-coin',
CreditCoin: 'creditcoin',
CreditCoin: 'wrapped-ctc',
};

// This refers to Coingecko API's platform names: https://api.coingecko.com/api/v3/asset_platforms
Expand Down
Loading