diff --git a/frontend/src/app/components/terms-of-service/terms-of-service.component.html b/frontend/src/app/components/terms-of-service/terms-of-service.component.html index 20fcf311d..99de1a981 100644 --- a/frontend/src/app/components/terms-of-service/terms-of-service.component.html +++ b/frontend/src/app/components/terms-of-service/terms-of-service.component.html @@ -1,16 +1,18 @@

- +

Terms of Service

-
Updated: October 12, 2020
+
Updated: March 05, 2021


+

The official mempool.space website and its API service are operated by Mempool Space K.K.

+
By using this website or accessing its API, you agree to these Terms of Service:

@@ -29,16 +31,51 @@

PRIVACY POLICY

-

The operators of this website may collect your IP address as part of basic webserver logs and a self-hosted statistics application, but this data will never be sold or shared with third parties. Please use Tor when accessing this website to protect your privacy.

+

Out of respect for our users, this website does not utilize any third-party trackers, and the operators of this website do not share any user data with third-parties. However, your IP address may incidentally be collected as part of basic webserver logs for systems administration purposes, and as part of an anonymized self-hosted statistics application for analytics. Therefore we recommend using Tor browser to conceal your IP address when accessing this website, or operating your own self-hosted instance of this website.

-

SPONSOR POLICY

+
-

If you donate at least 0.01 BTC to mempool.space and submit your Twitter username at the time of donation, we will generally feature your Twitter profile photo on our About page with a link to your Twitter account. However, we reserve the right to remove sponsors listed on our website that in our sole discretion are inappropriate. All donations made are non-refundable.

+

BITCOIN ONLY

-
+

Out of respect for our users, this website does not support altcoins, and is generally Bitcoin Only. However, in order to support various Bitcoin Layer 2 Networks, various fiat stablecoin tokens on Liquid, and the BSQ governance token for the Bisq DAO are not considered altcoins as they do not distract users from Bitcoin, and is part of our mission to support the full Bitcoin ecosystem. -

+
+ +

EXTERNAL LINKS

+ +

Out of respect for our users, this website does not display advertising, and generally does not link to external sources. However, to acknowledge members of the Bitcoin open-source community and direct supporters of The Mempool Open Source Project, external links will be made in the following cases:

+ +

However, we reserve the right to remove any links from our website that in our sole discretion are inappropriate. All donations are non-refundable.

+ +
+ +

COPYRIGHT NOTICE

+ +

Copyright © 2019-2021 The Mempool Open Source Project + +

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sublicense copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +

Commons Clause License Condition v1.0 + +

Without limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Software. + +

For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause License Condition notice. + +

+

+ diff --git a/frontend/src/app/components/terms-of-service/terms-of-service.component.ts b/frontend/src/app/components/terms-of-service/terms-of-service.component.ts index c45547be5..66367dc49 100644 --- a/frontend/src/app/components/terms-of-service/terms-of-service.component.ts +++ b/frontend/src/app/components/terms-of-service/terms-of-service.component.ts @@ -1,9 +1,14 @@ import { Component } from '@angular/core'; +import { Env, StateService } from '../../services/state.service'; @Component({ selector: 'app-terms-of-service', templateUrl: './terms-of-service.component.html' }) export class TermsOfServiceComponent { - constructor() { } + officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE; + + constructor( + private stateService: StateService, + ) { } } diff --git a/frontend/src/resources/mempool-space-logo-bigger.png b/frontend/src/resources/mempool-space-logo-bigger.png new file mode 100644 index 000000000..e8b0a384c Binary files /dev/null and b/frontend/src/resources/mempool-space-logo-bigger.png differ