Skip to content

Commit

Permalink
Merge pull request #24 from nabla-studio/nabla/update-mobile_wallets
Browse files Browse the repository at this point in the history
Feat: add wallet mobile metadata
  • Loading branch information
JeremyParish69 authored Dec 16, 2023
2 parents 251abf2 + 18c30f6 commit 766c37f
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 10 deletions.
14 changes: 8 additions & 6 deletions wallet.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,24 @@
}
}
}
}
},
"additionalProperties": false
},
"mobile": {
"type": "object",
"properties": {
"android": {
"type": "object",
"properties": {
"packageName": {
"package_name": {
"type": "string",
"description": "The package name for your Android standalone app. You make it up, but it needs to be unique on the Play Store. See this [StackOverflow question](https://stackoverflow.com/questions/6273892/android-package-name-convention)."
},
"schema": {
"type": "string",
"description": "Custom schema that provide a way to reference resources inside an app, documented [here](https://developer.android.com/training/app-links/deep-linking)."
},
"universalSchema": {
"universal_schema": {
"type": "string",
"description": "Universal schema for universal deeplink that provide a way to reference resources inside an app, documented [here](https://developer.android.com/training/app-links)."
}
Expand All @@ -185,21 +186,22 @@
"ios": {
"type": "object",
"properties": {
"bundleIdentifier": {
"bundle_identifier": {
"type": "string",
"description": "The bundle identifier for your iOS standalone app. You make it up, but it needs to be unique on the App Store. See this [StackOverflow question](https://stackoverflow.com/questions/11347470/what-does-bundle-identifier-mean-in-an-ios-project)."
},
"schema": {
"type": "string",
"description": "Custom URL schemes provide a way to reference resources inside an app, documented [here](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)."
},
"universalSchema": {
"universal_schema": {
"type": "string",
"description": "Universal schema for universal deeplink that provide a way to reference resources inside an app, documented [here](https://developer.apple.com/ios/universal-links/)."
}
}
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
Expand Down
10 changes: 9 additions & 1 deletion wallets/cosmostationmobile/wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,13 @@
},
"layout": "logomark"
}
]
],
"mobile": {
"ios": {
"bundle_identifier": "io.wannabit.cosmostation"
},
"android": {
"package_name": "wannabit.io.cosmostaion"
}
}
}
20 changes: 19 additions & 1 deletion wallets/keplrmobile/wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,23 @@
},
"layout": "logomark"
}
]
],
"wallet_connect": {
"deeplink": {
"path": {
"android": "wcV2",
"ios": "wcV2"
}
}
},
"mobile": {
"ios": {
"bundle_identifier": "com.chainapsis.keplrwallet",
"schema": "keplrwallet"
},
"android": {
"package_name": "com.chainapsis.keplr",
"schema": "keplrwallet"
}
}
}
20 changes: 19 additions & 1 deletion wallets/leapmobile/wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,23 @@
},
"layout": "logomark"
}
]
],
"wallet_connect": {
"deeplink": {
"path": {
"android": "wcV2",
"ios": "wcV2"
}
}
},
"mobile": {
"ios": {
"bundle_identifier": "com.LeapCosmosWallet",
"schema": "leapcosmos"
},
"android": {
"package_name": "io.leapwallet.cosmos",
"schema": "leapcosmos"
}
}
}
10 changes: 9 additions & 1 deletion wallets/trustwalletmobile/wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,13 @@
"layout": "logo",
"text_position": "top"
}
]
],
"mobile": {
"ios": {
"bundle_identifier": "com.sixdays.trust"
},
"android": {
"package_name": "com.wallet.crypto.trustapp"
}
}
}

0 comments on commit 766c37f

Please sign in to comment.