Skip to content

Commit f591961

Browse files
committed
Replace text and images from Arconnect with Wander app update
1 parent 5503435 commit f591961

File tree

6 files changed

+50
-13
lines changed

6 files changed

+50
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Try it now: https://aoww.net
77
ao Web Wallet is a wallet for the [ao network](https://ao.arweave.dev) running on Arweave. On ao it's easy to create earn some tokens when compliting a quest or create your own token. This wallet gives you an easy way to receive and transfer those tokens.
88

99
Features:
10-
- Add ArConnect Wallets
10+
- Add Wander Wallets
1111
- Create new wallets and import wallet.json files
1212
- View your ao processes
1313
- Send tokens for your owned ao processes

src/aoWebWallet/Shared/AddArConnectComponent.razor

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111
@if (!BindingContext.HasArConnectExtension.HasValue)
1212
{
13-
<MudText>Checking for ArConnect extension...</MudText>
13+
<MudText>Checking for Wander extension...</MudText>
1414
}
1515
else if (!BindingContext.HasArConnectExtension.Value)
1616
{
17-
<MudButton Href="https://www.arconnect.io/" style="cursor:pointer;">
17+
<MudButton Href="https://www.wander.app" style="cursor:pointer;">
1818
<div Class="d-custom-4">
19-
<MudImage Class="d-custom-5 rounded-lg" Src="images/arconnect.webp" Alt="arconnect logo" Elevation="25" />
20-
<MudText Typo="Typo.subtitle2" Class="ml-3">Download ArConnect</MudText>
19+
<MudImage Class="d-custom-5 rounded-lg" Src="images/wander.webp" Alt="arconnect logo" Elevation="25" />
20+
<MudText Typo="Typo.subtitle2" Class="ml-3">Download Wander</MudText>
2121
</div>
2222
</MudButton>
2323
}
@@ -27,8 +27,8 @@
2727
{
2828
<MudButton Class="d-custom-6" OnClick="Connect" Elevation="3">
2929
<div Class="d-custom-4">
30-
<MudImage Class="d-custom-5 rounded-lg" Src="images/arconnect.webp" Alt="arconnect logo" Elevation="25" />
31-
<MudText Typo="Typo.subtitle2" Class="ml-3">Connect with ArConnect</MudText>
30+
<MudImage Class="d-custom-5 rounded-lg" Src="images/wander.webp" Alt="wander logo" Elevation="25" Style="height:auto" />
31+
<MudText Typo="Typo.subtitle2" Class="ml-3">Connect with Wander</MudText>
3232
</div>
3333
</MudButton>
3434

@@ -40,8 +40,8 @@
4040
{
4141
<MudButton Class="d-custom-6" OnClick="Connect" Elevation="3">
4242
<div Class="d-custom-4">
43-
<MudImage Class="d-custom-5 rounded-lg" Src="images/arconnect.webp" Alt="arconnect logo" Elevation="25" />
44-
<MudText Typo="Typo.subtitle2" Class="ml-3">Connect with ArConnect</MudText>
43+
<MudImage Class="d-custom-5 rounded-lg" Src="images/wander.webp" Alt="wander logo" Elevation="25" Style="height:auto" />
44+
<MudText Typo="Typo.subtitle2" Class="ml-3">Connect with Wander</MudText>
4545
</div>
4646
</MudButton>
4747
}
@@ -97,7 +97,7 @@
9797

9898
if (string.IsNullOrEmpty(BindingContext.ActiveArConnectAddress))
9999
{
100-
Snackbar.Add($"Please allow this website access to ArConnect", Severity.Info);
100+
Snackbar.Add($"Please allow this website access to Wander app", Severity.Info);
101101
}
102102
await ArweaveService.ConnectArConnectAsync(new string[] { "ACCESS_ADDRESS", "SIGN_TRANSACTION" }, "aoWebWallet");
103103

@@ -106,15 +106,15 @@
106106

107107
if (string.IsNullOrEmpty(BindingContext.ActiveArConnectAddress))
108108
{
109-
Snackbar.Add($"Access to ArConnect denied", Severity.Error);
109+
Snackbar.Add($"Access to Wander App denied", Severity.Error);
110110
}
111111
else
112112
{
113113
var address = BindingContext.ActiveArConnectAddress;
114114
var wallet = new Wallet
115115
{
116116
Address = address,
117-
Name = "ArConnect",
117+
Name = "Wander",
118118
Source = WalletTypes.ArConnect,
119119
IsReadOnly = false,
120120
AddedDate = DateTimeOffset.UtcNow

src/aoWebWallet/Shared/AddWalletComponent.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<MudPaper Elevation="0" Class="pa-4 border-radius-25 first-wallet">
2121
<div Style="width:100%; display:flex; flex-direction:row; justify-content:center;">
2222
<div Class="background-x">
23-
<MudImage Src="images/arconnect-logo.svg" Alt="hello" Elevation="25" Class="ww-image-start ar-logo-setup" />
23+
<MudImage Src="images/wander-wallet.svg" Alt="hello" Elevation="25" Class="ww-image-start ar-logo-setup" />
2424
</div>
2525
</div>
2626
<AddArConnectComponent></AddArConnectComponent>
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
13.1 KB
Loading

0 commit comments

Comments
 (0)