Skip to content

Commit 7435549

Browse files
authored
Merge pull request #553 from Arculus-Holdings-L-L-C/arc-base64-tweak
Arculus Wallet Adjustments
2 parents 69dda7f + c9b5439 commit 7435549

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

wallets/arculus-mobile/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 0.1.2 (2025-04-29)
7+
8+
**Note:** Change encoding to base 64, Updated deeplink and universal urls
9+
610
## 0.1.1 (2025-04-07)
711

812
**Note:** Version bump only for package @cosmos-kit/arculus-mobile

wallets/arculus-mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cosmos-kit/arculus-mobile",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "arculus cosmos-kit wallet connector",
55
"author": "[email protected]",
66
"contributors": [

wallets/arculus-mobile/src/wallet-connect/registry.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ export const ArculusMobileInfo: Wallet = {
3131
connectEventNamesOnWindow: ['arculus_keystorechange'],
3232
walletconnect: {
3333
name: 'Arculus Wallet',
34-
projectId: 'd5235b42fc7273823b6dc3214c822da3',
34+
projectId: '0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92',
35+
encoding: 'base64',
3536
mobile: {
3637
native: {
3738
ios: 'arculuswc:',
38-
android: 'arculuswc:',
39+
android: 'intent:',
3940
},
41+
universal: 'https://gw.arculus.co/app/wc'
4042
},
4143
formatNativeUrl: (
4244
appUrl: string,
@@ -47,6 +49,8 @@ export const ArculusMobileInfo: Wallet = {
4749
const plainAppUrl = appUrl.split(':')[0];
4850
const encodedWcUrl = encodeURIComponent(wcUri);
4951
switch (os) {
52+
case 'android':
53+
return `${plainAppUrl}://wcV2?${encodedWcUrl}#Intent;package=co.arculus.wallet.android;scheme=arculuswc;end;`;
5054
default:
5155
return `${plainAppUrl}://wcV2?${encodedWcUrl}`;
5256
}

wallets/arculus/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 0.1.2 (2025-04-29)
7+
8+
**Note:** Change encoding to base 64, Updated deeplink and universal urls
9+
610
## 0.1.1 (2025-04-07)
711

812
**Note:** Version bump only for package @cosmos-kit/arculus

wallets/arculus/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cosmos-kit/arculus",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "cosmos-kit wallet connector",
55
"author": "[email protected]",
66
"contributors": [
@@ -50,6 +50,6 @@
5050
"url": "https://github.com/hyperweb-io/cosmos-kit/issues"
5151
},
5252
"dependencies": {
53-
"@cosmos-kit/arculus-mobile": "^0.1.1"
53+
"@cosmos-kit/arculus-mobile": "^0.1.2"
5454
}
5555
}

0 commit comments

Comments
 (0)