Skip to content

Commit

Permalink
Added Astro USD to System Tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
michielpost committed Jul 11, 2024
1 parent 813fca8 commit 77f1272
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/aoWebWallet/Pages/Apps.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<AppListItem Name="AstroUSD"
Link="https://www.astrousd.com"
Logo="https://pbs.twimg.com/profile_images/1762157501934370816/Be2PlMsV_400x400.jpg"
Logo="https://pbs.twimg.com/profile_images/1808541612957437952/ojoV8iCG_400x400.jpg"
Description="USD stable coin" />

<AppListItem Name="TrunkToken"
Expand Down
10 changes: 10 additions & 0 deletions src/aoWebWallet/Services/StorageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,16 @@ public static void AddSystemTokens(List<Token> result)
Name = "Lava",
Ticker = "FIRE-EARTH"
});

AddSystemToken(result, "GcFxqTQnKHcr304qnOcq00ZqbaYGDn4Wbb0DHAM-wvU",
new TokenData
{
TokenId = "GcFxqTQnKHcr304qnOcq00ZqbaYGDn4Wbb0DHAM-wvU",
Denomination = 12,
Logo = "K8nurc9H0_ZQm17jbs3ryEs6MrlX-oIK_krpprWlQ-Q",
Name = "Astro USD (Test)",
Ticker = "USDA-TST"
});
}

private static void AddSystemToken(List<Token> list, string tokenId, TokenData tokenData, string? proxyTokenId = null)
Expand Down
8 changes: 4 additions & 4 deletions src/aoWebWallet/aoWebWallet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
<PackageReference Include="ArweaveBlazor" Version="0.0.9" />
<PackageReference Include="ClipLazor" Version="2.1.1" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="6.9.2" />
<PackageReference Include="MudBlazor" Version="7.0.0" />
<PackageReference Include="MudBlazor" Version="7.1.0" />
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
<PackageReference Include="BlazorWasmPreRendering.Build" Version="4.0.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.6" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.7" PrivateAssets="all" />
<PackageReference Include="ReactorBlazorQRCodeScanner" Version="1.0.7" />
<PackageReference Include="Soenneker.Blazor.Utils.Navigation" Version="2.1.243" />
<PackageReference Include="Soenneker.Blazor.Utils.Navigation" Version="2.1.270" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 77f1272

Please sign in to comment.