Skip to content

Commit

Permalink
Rename thanos to temple (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
letier3110 authored Mar 24, 2022
1 parent 37ec208 commit 15dd377
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Temple - Tezos Wallet (ex. Thanos)
# Temple - Tezos Wallet

Cryptocurrency wallet for [Tezos blockchain](https://tezos.com) as Web Extension for your Browser.<br>
Providing ability to manage NFT, tez tokens and interact with dApps.
Expand Down
2 changes: 1 addition & 1 deletion public/fullpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Temple - Tezos Wallet (ex. Thanos)</title>
<title>Temple - Tezos Wallet</title>
</head>
<body class="bg-primary-white" style="min-height: calc(100vh + 1px)">
<div id="root"></div>
Expand Down
6 changes: 3 additions & 3 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"name": "Temple - Tezos Wallet (ex. Thanos)",
"name": "Temple - Tezos Wallet",
"version": "1.13.29",

"icons": {
Expand All @@ -12,7 +12,7 @@

"description": "__MSG_appDesc__",
"__chrome|firefox|opera__homepage_url": "https://github.com/madfish-solutions/templewallet-extension",
"short_name": "Temple - Tezos Wallet (ex. Thanos)",
"short_name": "Temple - Tezos Wallet",

"permissions": [
"storage",
Expand Down Expand Up @@ -53,7 +53,7 @@
"38": "misc/icon-38.png",
"128": "misc/icon-128.png"
},
"default_title": "Temple - Tezos Wallet (ex. Thanos)",
"default_title": "Temple - Tezos Wallet",
"__chrome|opera__chrome_style": false,
"__firefox__browser_style": false
},
Expand Down
2 changes: 1 addition & 1 deletion public/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Temple - Tezos Wallet (ex. Thanos)</title>
<title>Temple - Tezos Wallet</title>
</head>
<body class="bg-white" style="width: 360px; min-height: calc(100vh + 1px);">
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/contentScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type BeaconPageMessage = BeaconMessage | { message: BeaconMessage; sender: { id:

const SENDER = {
id: browser.runtime.id,
name: 'Temple - Tezos Wallet (ex. Thanos)',
name: 'Temple - Tezos Wallet',
iconUrl: process.env.TEMPLE_WALLET_LOGO_URL || undefined
};

Expand Down
2 changes: 1 addition & 1 deletion src/lib/temple/beacon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export function formatOpParams(op: any) {
*/
export const PAIRING_RESPONSE_BASE: Partial<PostMessagePairingResponse> = {
type: MessageType.HandshakeResponse,
name: 'Temple - Tezos Wallet (ex. Thanos)',
name: 'Temple - Tezos Wallet',
icon: process.env.TEMPLE_WALLET_LOGO_URL || undefined,
appUrl: browser.runtime.getURL('fullpage.html')
};
Expand Down

0 comments on commit 15dd377

Please sign in to comment.