diff --git a/.changeset/soft-apples-trade.md b/.changeset/soft-apples-trade.md new file mode 100644 index 0000000..2a3613a --- /dev/null +++ b/.changeset/soft-apples-trade.md @@ -0,0 +1,6 @@ +--- +"@macalinao/token-utils": patch +"example-dapp": patch +--- + +use better SOL icon diff --git a/apps/example-dapp/public/tokens/sol.svg b/apps/example-dapp/public/tokens/sol.svg new file mode 100644 index 0000000..633dec7 --- /dev/null +++ b/apps/example-dapp/public/tokens/sol.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/token-utils/src/native-sol.ts b/packages/token-utils/src/native-sol.ts index b27c450..c92812b 100644 --- a/packages/token-utils/src/native-sol.ts +++ b/packages/token-utils/src/native-sol.ts @@ -10,5 +10,5 @@ export const NATIVE_SOL: TokenInfo<"11111111111111111111111111111111", 9> = { symbol: "SOL", decimals: 9, // TODO(igm): icons should be put in some sort of static repository, and they should be SVGs. - iconURL: "https://cryptologos.cc/logos/solana-sol-logo.png", + iconURL: "https://grill.ianm.com/tokens/sol.svg", };