diff --git a/.github/workflows/validate_walletjson.yml b/.github/workflows/validate_walletjson.yml index 2545dc8..3c8f42e 100644 --- a/.github/workflows/validate_walletjson.yml +++ b/.github/workflows/validate_walletjson.yml @@ -16,7 +16,7 @@ jobs: - name: Validate Wallet.json schema run: | - for file in $(find . -name '*.wallet.json'); do + for file in $(find . -name 'wallet.json'); do if ! jsonschema -i "$file" ./wallet.schema.json; then exit 1 fi diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/wallet.schema.json b/wallet.schema.json index 065fe03..2ebffd7 100644 --- a/wallet.schema.json +++ b/wallet.schema.json @@ -1,5 +1,6 @@ { - "$schema": "https://json-schema.org/draft-07/schema", + "$schema": "https://json-schema.org/draft-07/schema#", + "$id": "https://json-schema.org/draft-07/schema", "title": "Cosmos Wallet", "description": "Cosmos Wallet.json is a metadata file that contains information about a wallet of a specific platform and which chains it supports, either natively or via custom client-side addition.", "type": "object", @@ -34,11 +35,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "suggest_chain", - "get_supported_chains", - "icns" - ] + "enum": ["suggest_chain", "get_supported_chains", "icns"] } }, "platforms": { @@ -48,19 +45,11 @@ "properties": { "device": { "type": "string", - "enum": [ - "mobile", - "tablet", - "desktop", - "other" - ] + "enum": ["mobile", "tablet", "desktop", "other"] }, "type": { "type": "string", - "enum": [ - "application", - "extension" - ] + "enum": ["application", "extension"] }, "platform": { "type": "string", @@ -79,13 +68,73 @@ } }, "additionalProperties": false, - "required": [ - "device", - "type", - "platform" - ] + "required": ["device", "type", "platform"] }, "minContains": 1 + }, + "images": { + "type": "array", + "items": { + "type": "object", + "properties": { + "png": { + "type": "string", + "format": "uri-reference", + "pattern": "^https://raw\\.githubusercontent\\.com/cosmos/wallet-registry/main/(.*)\\.png$" + }, + "svg": { + "type": "string", + "format": "uri-reference", + "pattern": "^https://raw\\.githubusercontent\\.com/cosmos/wallet-registry/main/(.*)\\.svg$" + }, + "theme": { + "type": "object", + "properties": { + "primary_color_hex": { + "type": "string", + "pattern": "^#[0-9a-fA-F]{6}$" + }, + "circle": { + "type": "boolean" + }, + "dark_mode": { + "type": "boolean" + } + }, + "minProperties": 1, + "additionalProperties": false + }, + "layout": { + "type": "string", + "enum": ["logo", "logomark", "logotype"], + "description": "logomark == icon only; logotype == text only; logo == icon + text." + }, + "text_position": { + "type": "string", + "enum": ["top", "bottom", "left", "right", "integrated"], + "description": "Indicates in which position the text is placed, in case the layout is 'icon' type, it's required only in this case." + } + }, + "if": { + "properties": { + "layout": { "const": "logo" } + }, + "required": ["layout"] + }, + "then": { + "required": ["text_position"] + }, + "anyOf": [ + { + "required": ["png"] + }, + { + "required": ["svg"] + } + ], + "required": ["layout"], + "additionalProperties": false + } } }, "additionalProperties": false, @@ -94,6 +143,7 @@ "wallet_name", "pretty_name", "platforms", - "supported_chains" + "supported_chains", + "images" ] } diff --git a/wallets/cosmostationextension.json b/wallets/cosmostationextension.json deleted file mode 100644 index 955bd5a..0000000 --- a/wallets/cosmostationextension.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "../wallet.schema.json", - "wallet_name": "cosmostationextention", - "pretty_name": "Cosmostation", - "website": "https://www.cosmostation.io/", - "git_repo": "https://github.com/cosmostation/cosmostation-chrome-extension", - "supported_chains": [ - "cosmoshub", - "akash", - "assetmantle", - "axelar", - "bandchain", - "bitcanna", - "bitsong", - "canto", - "cerberus", - "chihuahua", - "comdex", - "coreum", - "crescent", - "cryptoorgchain", - "cudos", - "desmos", - "emoney", - "evmos", - "fetchhub", - "gravitybridge", - "injective", - "irisnet", - "impacthub", - "juno", - "kava", - "kichain", - "konstellation", - "kujira", - "kyve", - "likecoin", - "lumnetwork", - "neutron", - "noble", - "nyx", - "omniflixhub", - "onomy", - "osmosis", - "panacea", - "passage", - "persistence", - "provenance", - "quasar", - "regen", - "rizon", - "secretnetwork", - "sentinel", - "shentu", - "sifchain", - "sommelier", - "stafihub", - "stargaze", - "starname", - "stride", - "teritori", - "tgrade", - "umee" - ], - "features": [ - "suggest_chain", - "icns" - ], - "platforms": [ - { - "device": "desktop", - "type": "extension", - "platform": "chrome", - "install_link": "https://chrome.google.com/webstore/detail/cosmostation/fpkhgmpbidmiogeglndfbkegfdlnajnf?utm_source=chrome-ntp-icon" - } - ] -} diff --git a/wallets/cosmostationextension/images/logo.png b/wallets/cosmostationextension/images/logo.png new file mode 100644 index 0000000..5d66b9d Binary files /dev/null and b/wallets/cosmostationextension/images/logo.png differ diff --git a/wallets/cosmostationextension/images/logo.svg b/wallets/cosmostationextension/images/logo.svg new file mode 100644 index 0000000..e75d0ee --- /dev/null +++ b/wallets/cosmostationextension/images/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/wallets/cosmostationextension/wallet.json b/wallets/cosmostationextension/wallet.json new file mode 100644 index 0000000..e5e153a --- /dev/null +++ b/wallets/cosmostationextension/wallet.json @@ -0,0 +1,86 @@ +{ + "$schema": "../../wallet.schema.json", + "wallet_name": "cosmostationextention", + "pretty_name": "Cosmostation", + "website": "https://www.cosmostation.io/", + "git_repo": "https://github.com/cosmostation/cosmostation-chrome-extension", + "supported_chains": [ + "cosmoshub", + "akash", + "assetmantle", + "axelar", + "bandchain", + "bitcanna", + "bitsong", + "canto", + "cerberus", + "chihuahua", + "comdex", + "coreum", + "crescent", + "cryptoorgchain", + "cudos", + "desmos", + "emoney", + "evmos", + "fetchhub", + "gravitybridge", + "injective", + "irisnet", + "impacthub", + "juno", + "kava", + "kichain", + "konstellation", + "kujira", + "kyve", + "likecoin", + "lumnetwork", + "neutron", + "noble", + "nyx", + "omniflixhub", + "onomy", + "osmosis", + "panacea", + "passage", + "persistence", + "provenance", + "quasar", + "regen", + "rizon", + "secretnetwork", + "sentinel", + "shentu", + "sifchain", + "sommelier", + "stafihub", + "stargaze", + "starname", + "stride", + "teritori", + "tgrade", + "umee" + ], + "features": ["suggest_chain", "icns"], + "platforms": [ + { + "device": "desktop", + "type": "extension", + "platform": "chrome", + "install_link": "https://chrome.google.com/webstore/detail/cosmostation/fpkhgmpbidmiogeglndfbkegfdlnajnf?utm_source=chrome-ntp-icon" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/cosmostationextension/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/cosmostationextension/images/logo.svg", + "theme": { + "primary_color_hex": "#9C6CFF", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + } + ] +} diff --git a/wallets/cosmostationmobile/images/logo.png b/wallets/cosmostationmobile/images/logo.png new file mode 100644 index 0000000..5d66b9d Binary files /dev/null and b/wallets/cosmostationmobile/images/logo.png differ diff --git a/wallets/cosmostationmobile/images/logo.svg b/wallets/cosmostationmobile/images/logo.svg new file mode 100644 index 0000000..e75d0ee --- /dev/null +++ b/wallets/cosmostationmobile/images/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/wallets/cosmostationmobile.json b/wallets/cosmostationmobile/wallet.json similarity index 76% rename from wallets/cosmostationmobile.json rename to wallets/cosmostationmobile/wallet.json index 6752eb2..547a8d1 100644 --- a/wallets/cosmostationmobile.json +++ b/wallets/cosmostationmobile/wallet.json @@ -1,5 +1,5 @@ { - "$schema": "../wallet.schema.json", + "$schema": "../../wallet.schema.json", "wallet_name": "cosmostation", "pretty_name": "Cosmostation", "website": "https://www.cosmostation.io/", @@ -73,5 +73,17 @@ "platform": "android", "install_link": "https://play.google.com/store/apps/details?id=wannabit.io.cosmostaion" } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/cosmostationmobile/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/cosmostationmobile/images/logo.svg", + "theme": { + "primary_color_hex": "#9C6CFF", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + } ] } diff --git a/wallets/keplrextension.json b/wallets/keplrextension.json deleted file mode 100644 index f07ca8d..0000000 --- a/wallets/keplrextension.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$schema": "../wallet.schema.json", - "wallet_name": "keplrextension", - "pretty_name": "Keplr", - "website": "https://www.keplr.app/", - "git_repo": "https://github.com/chainapsis/keplr-wallet", - "supported_chains": [ - "cosmoshub", - "osmosis", - "secretnetwork", - "regen", - "akash", - "sifchain", - "stargaze", - "sentinel", - "persistence", - "kava", - "cryptoorgchain", - "irisnet", - "agoric", - "axelar", - "certik", - "ixo", - "emoney", - "juno", - "sommelier", - "umee", - "evmos", - "bostrom", - "starname", - "gravitybridge", - "stride", - "tgrade" - ], - "features": [ - "suggest_chain", - "icns" - ], - "platforms": [ - { - "device": "desktop", - "type": "extension", - "platform": "chrome", - "install_link": "https://chrome.google.com/webstore/detail/keplr/dmkamcknogkgcdfhhbddcghachkejeap", - }, - { - "device": "desktop", - "type": "extension", - "platform": "firefox", - "install_link": "https://addons.mozilla.org/firefox/addon/keplr/", - } - ] -} diff --git a/wallets/keplrextension/images/logo-text-dark.png b/wallets/keplrextension/images/logo-text-dark.png new file mode 100644 index 0000000..f79436b Binary files /dev/null and b/wallets/keplrextension/images/logo-text-dark.png differ diff --git a/wallets/keplrextension/images/logo-text-dark.svg b/wallets/keplrextension/images/logo-text-dark.svg new file mode 100644 index 0000000..71f8a42 --- /dev/null +++ b/wallets/keplrextension/images/logo-text-dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrextension/images/logo-text.png b/wallets/keplrextension/images/logo-text.png new file mode 100644 index 0000000..333cdb3 Binary files /dev/null and b/wallets/keplrextension/images/logo-text.png differ diff --git a/wallets/keplrextension/images/logo-text.svg b/wallets/keplrextension/images/logo-text.svg new file mode 100644 index 0000000..cf66362 --- /dev/null +++ b/wallets/keplrextension/images/logo-text.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrextension/images/logo.png b/wallets/keplrextension/images/logo.png new file mode 100644 index 0000000..34a73c9 Binary files /dev/null and b/wallets/keplrextension/images/logo.png differ diff --git a/wallets/keplrextension/images/logo.svg b/wallets/keplrextension/images/logo.svg new file mode 100644 index 0000000..e56c525 --- /dev/null +++ b/wallets/keplrextension/images/logo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrextension/wallet.json b/wallets/keplrextension/wallet.json new file mode 100644 index 0000000..99e2ebf --- /dev/null +++ b/wallets/keplrextension/wallet.json @@ -0,0 +1,83 @@ +{ + "$schema": "../../wallet.schema.json", + "wallet_name": "keplrextension", + "pretty_name": "Keplr", + "website": "https://www.keplr.app/", + "git_repo": "https://github.com/chainapsis/keplr-wallet", + "supported_chains": [ + "cosmoshub", + "osmosis", + "secretnetwork", + "regen", + "akash", + "sifchain", + "stargaze", + "sentinel", + "persistence", + "kava", + "cryptoorgchain", + "irisnet", + "agoric", + "axelar", + "certik", + "ixo", + "emoney", + "juno", + "sommelier", + "umee", + "evmos", + "bostrom", + "starname", + "gravitybridge", + "stride", + "tgrade" + ], + "features": ["suggest_chain", "icns"], + "platforms": [ + { + "device": "desktop", + "type": "extension", + "platform": "chrome", + "install_link": "https://chrome.google.com/webstore/detail/keplr/dmkamcknogkgcdfhhbddcghachkejeap" + }, + { + "device": "desktop", + "type": "extension", + "platform": "firefox", + "install_link": "https://addons.mozilla.org/firefox/addon/keplr/" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo.svg", + "theme": { + "primary_color_hex": "#1BB8FF", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text.svg", + "theme": { + "primary_color_hex": "#EBF7FD", + "circle": false, + "dark_mode": false + }, + "layout": "logo", + "text_position": "right" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text-dark.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text-dark.svg", + "theme": { + "primary_color_hex": "#0A0718", + "circle": false, + "dark_mode": true + }, + "layout": "logomark" + } + ] +} diff --git a/wallets/keplrmobile.json b/wallets/keplrmobile.json deleted file mode 100644 index 5c1288e..0000000 --- a/wallets/keplrmobile.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "$schema": "../wallet.schema.json", - "wallet_name": "keplrmobile", - "pretty_name": "Keplr", - "website": "https://www.keplr.app/", - "git_repo": "https://github.com/chainapsis/keplr-wallet", - "supported_chains": [ - "cosmoshub", - "osmosis", - "secretnetwork", - "regen", - "akash", - "sifchain", - "stargaze", - "sentinel", - "persistence", - "cryptoorgchain", - "irisnet", - "agoric", - "axelar", - "certik", - "ixo", - "emoney", - "tick", - "terra", - "likecoin", - "bitcanna", - "bitsong", - "ki", - "panacea" - "juno", - "sommelier", - "umee", - "evmos", - "injective", - "bostrom", - "comdex", - "cheqd", - "chihuahua", - "lumnetwork", - "vidulum", - "desmos", - "dig", - "starname", - "gravitybridge" - ], - "features": [ - "icns" - ], - "platforms": [ - { - "device": "mobile", - "type": "application", - "platform": "ios", - "install_link": "https://apps.apple.com/app/keplr-wallet/id1567851089", - }, - { - "device": "mobile", - "type": "application", - "platform": "android", - "install_link": "https://play.google.com/store/apps/details?id=com.chainapsis.keplr", - } - ] -} diff --git a/wallets/keplrmobile/images/logo-text-dark.png b/wallets/keplrmobile/images/logo-text-dark.png new file mode 100644 index 0000000..f79436b Binary files /dev/null and b/wallets/keplrmobile/images/logo-text-dark.png differ diff --git a/wallets/keplrmobile/images/logo-text-dark.svg b/wallets/keplrmobile/images/logo-text-dark.svg new file mode 100644 index 0000000..71f8a42 --- /dev/null +++ b/wallets/keplrmobile/images/logo-text-dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrmobile/images/logo-text.png b/wallets/keplrmobile/images/logo-text.png new file mode 100644 index 0000000..333cdb3 Binary files /dev/null and b/wallets/keplrmobile/images/logo-text.png differ diff --git a/wallets/keplrmobile/images/logo-text.svg b/wallets/keplrmobile/images/logo-text.svg new file mode 100644 index 0000000..cf66362 --- /dev/null +++ b/wallets/keplrmobile/images/logo-text.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrmobile/images/logo.png b/wallets/keplrmobile/images/logo.png new file mode 100644 index 0000000..34a73c9 Binary files /dev/null and b/wallets/keplrmobile/images/logo.png differ diff --git a/wallets/keplrmobile/images/logo.svg b/wallets/keplrmobile/images/logo.svg new file mode 100644 index 0000000..e56c525 --- /dev/null +++ b/wallets/keplrmobile/images/logo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/keplrmobile/wallet.json b/wallets/keplrmobile/wallet.json new file mode 100644 index 0000000..d0d138f --- /dev/null +++ b/wallets/keplrmobile/wallet.json @@ -0,0 +1,95 @@ +{ + "$schema": "../../wallet.schema.json", + "wallet_name": "keplrmobile", + "pretty_name": "Keplr", + "website": "https://www.keplr.app/", + "git_repo": "https://github.com/chainapsis/keplr-wallet", + "supported_chains": [ + "cosmoshub", + "osmosis", + "secretnetwork", + "regen", + "akash", + "sifchain", + "stargaze", + "sentinel", + "persistence", + "cryptoorgchain", + "irisnet", + "agoric", + "axelar", + "certik", + "ixo", + "emoney", + "tick", + "terra", + "likecoin", + "bitcanna", + "bitsong", + "ki", + "panacea", + "juno", + "sommelier", + "umee", + "evmos", + "injective", + "bostrom", + "comdex", + "cheqd", + "chihuahua", + "lumnetwork", + "vidulum", + "desmos", + "dig", + "starname", + "gravitybridge" + ], + "features": ["icns"], + "platforms": [ + { + "device": "mobile", + "type": "application", + "platform": "ios", + "install_link": "https://apps.apple.com/app/keplr-wallet/id1567851089" + }, + { + "device": "mobile", + "type": "application", + "platform": "android", + "install_link": "https://play.google.com/store/apps/details?id=com.chainapsis.keplr" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo.svg", + "theme": { + "primary_color_hex": "#1BB8FF", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text.svg", + "theme": { + "primary_color_hex": "#EBF7FD", + "circle": false, + "dark_mode": false + }, + "layout": "logo", + "text_position": "right" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text-dark.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/keplrextension/images/logo-text-dark.svg", + "theme": { + "primary_color_hex": "#0A0718", + "circle": false, + "dark_mode": true + }, + "layout": "logomark" + } + ] +} diff --git a/wallets/leapextension/images/logo.png b/wallets/leapextension/images/logo.png new file mode 100644 index 0000000..a0efe9d Binary files /dev/null and b/wallets/leapextension/images/logo.png differ diff --git a/wallets/leapextension/images/logo.svg b/wallets/leapextension/images/logo.svg new file mode 100644 index 0000000..f412475 --- /dev/null +++ b/wallets/leapextension/images/logo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/leapextension.json b/wallets/leapextension/wallet.json similarity index 67% rename from wallets/leapextension.json rename to wallets/leapextension/wallet.json index 97710b5..ccccb9a 100644 --- a/wallets/leapextension.json +++ b/wallets/leapextension/wallet.json @@ -1,5 +1,5 @@ { - "$schema": "../wallet.schema.json", + "$schema": "../../wallet.schema.json", "wallet_name": "leapextension", "pretty_name": "Leap Cosmos Wallet", "website": "https://www.leapwallet.io/", @@ -45,5 +45,17 @@ "platform": "chrome", "install_link": "https://chrome.google.com/webstore/detail/leap-cosmos-wallet/fcfcfllfndlomdhbehjjcoimbgofdncg" } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/leapextension/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/leapextension/images/logo.svg", + "theme": { + "primary_color_hex": "#32DA6D", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + } ] } diff --git a/wallets/leapmobile/images/logo.png b/wallets/leapmobile/images/logo.png new file mode 100644 index 0000000..a0efe9d Binary files /dev/null and b/wallets/leapmobile/images/logo.png differ diff --git a/wallets/leapmobile/images/logo.svg b/wallets/leapmobile/images/logo.svg new file mode 100644 index 0000000..f412475 --- /dev/null +++ b/wallets/leapmobile/images/logo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wallets/leapmobile.json b/wallets/leapmobile/wallet.json similarity index 68% rename from wallets/leapmobile.json rename to wallets/leapmobile/wallet.json index be8ee4e..5b7f212 100644 --- a/wallets/leapmobile.json +++ b/wallets/leapmobile/wallet.json @@ -1,5 +1,5 @@ { - "$schema": "../wallet.schema.json", + "$schema": "../../wallet.schema.json", "wallet_name": "leapmobile", "pretty_name": "Leap cosmos", "website": "https://leapwallet.io", @@ -45,5 +45,17 @@ "platform": "android", "install_link": "https://play.google.com/store/apps/details?id=io.leapwallet.cosmos" } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/leapmobile/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/leapmobile/images/logo.svg", + "theme": { + "primary_color_hex": "#32DA6D", + "circle": false, + "dark_mode": false + }, + "layout": "logomark" + } ] } diff --git a/wallets/trustwalletmobile.json b/wallets/trustwalletmobile.json deleted file mode 100644 index ebc4b9e..0000000 --- a/wallets/trustwalletmobile.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "$schema": "../wallet.schema.json", - "wallet_name": "trustwalletmobile", - "pretty_name": "Trust Wallet", - "website": "https://www.trustwallet.com", - "git_repo": "https://github.com/trustwallet", - "supported_chains": [ - "cosmoshub", - "osmosis", - "cryptoorgchain", - "terra", - "evmos", - "kava", - "thorchain" - ], - "platforms": [ - { - "device": "mobile", - "type": "application", - "platform": "ios", - "install_link": "https://apps.apple.com/app/apple-store/id1288339409", - }, - { - "device": "mobile", - "type": "application", - "platform": "android", - "install_link": "https://play.google.com/store/apps/details?id=com.wallet.crypto.trustapp", - } - ] -} diff --git a/wallets/trustwalletmobile/images/logo-text.png b/wallets/trustwalletmobile/images/logo-text.png new file mode 100644 index 0000000..84c8101 Binary files /dev/null and b/wallets/trustwalletmobile/images/logo-text.png differ diff --git a/wallets/trustwalletmobile/images/logo-text.svg b/wallets/trustwalletmobile/images/logo-text.svg new file mode 100644 index 0000000..d6e83da --- /dev/null +++ b/wallets/trustwalletmobile/images/logo-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/wallets/trustwalletmobile/images/logo.png b/wallets/trustwalletmobile/images/logo.png new file mode 100644 index 0000000..1f14de1 Binary files /dev/null and b/wallets/trustwalletmobile/images/logo.png differ diff --git a/wallets/trustwalletmobile/images/logo.svg b/wallets/trustwalletmobile/images/logo.svg new file mode 100644 index 0000000..409f798 --- /dev/null +++ b/wallets/trustwalletmobile/images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/wallets/trustwalletmobile/wallet.json b/wallets/trustwalletmobile/wallet.json new file mode 100644 index 0000000..b8156b1 --- /dev/null +++ b/wallets/trustwalletmobile/wallet.json @@ -0,0 +1,54 @@ +{ + "$schema": "../../wallet.schema.json", + "wallet_name": "trustwalletmobile", + "pretty_name": "Trust Wallet", + "website": "https://www.trustwallet.com", + "git_repo": "https://github.com/trustwallet", + "supported_chains": [ + "cosmoshub", + "osmosis", + "cryptoorgchain", + "terra", + "evmos", + "kava", + "thorchain" + ], + "platforms": [ + { + "device": "mobile", + "type": "application", + "platform": "ios", + "install_link": "https://apps.apple.com/app/apple-store/id1288339409" + }, + { + "device": "mobile", + "type": "application", + "platform": "android", + "install_link": "https://play.google.com/store/apps/details?id=com.wallet.crypto.trustapp" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/trustwalletmobile/images/logo-text.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/trustwalletmobile/images/logo-text.svg", + "theme": { + "primary_color_hex": "#0500ff", + "circle": false, + "dark_mode": false + }, + "layout": "logo", + "text_position": "right" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/trustwalletmobile/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/wallet-registry/main/trustwalletmobile/images/logo.svg", + "theme": { + "primary_color_hex": "#0500ff", + "circle": false, + "dark_mode": false + }, + "layout": "logo", + "text_position": "top" + } + ] +}