Skip to content

Commit 0742d5c

Browse files
Merge branch 'fix/meme-staging' of github.com:valory-xyz/olas-operate-app into release/gated
2 parents 6c52443 + f2ab8a8 commit 0742d5c

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

frontend/components/Layout/TopBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const TopBar = () => {
6262
<DisabledLight />
6363
</TrafficLights>
6464

65-
<Text>{`Pearl (alpha) ${envName ? `(${envName})` : ''}`.trim()}</Text>
65+
<Text>{`Pearl (beta) ${envName ? `(${envName})` : ''}`.trim()}</Text>
6666
</TopBarContainer>
6767
);
6868
};

frontend/components/Pages/HelpAndSupportPage/index.tsx

+9-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import { Button, Card, Flex, message, Typography } from 'antd';
33
import { useCallback, useEffect, useState } from 'react';
44

55
import { UNICODE_SYMBOLS } from '@/constants/symbols';
6-
import { FAQ_URL, SUPPORT_URL } from '@/constants/urls';
6+
import {
7+
FAQ_URL,
8+
SUPPORT_URL,
9+
TERMS_AND_CONDITIONS_URL,
10+
} from '@/constants/urls';
711
import { useElectronApi } from '@/hooks/useElectronApi';
812
import { useLogs } from '@/hooks/useLogs';
913

@@ -84,9 +88,12 @@ export const HelpAndSupport = () => {
8488
<Title level={5} className="m-0 mb-16 text-base">
8589
Frequently asked questions
8690
</Title>
87-
<a target="_blank" href={FAQ_URL}>
91+
<a target="_blank" href={FAQ_URL} className="mb-8">
8892
Read FAQ {UNICODE_SYMBOLS.EXTERNAL_LINK}
8993
</a>
94+
<a target="_blank" href={TERMS_AND_CONDITIONS_URL}>
95+
Terms and Conditions {UNICODE_SYMBOLS.EXTERNAL_LINK}
96+
</a>
9097
</CardSection>
9198

9299
<CardSection borderbottom="true" padding="16px 24px 24px" vertical>

frontend/components/SetupPage/EarlyAccessOnly.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const EarlyAccessOnly = () => {
3434
</Paragraph>
3535
<Button
3636
type="link"
37-
href="https://example.com"
37+
href="https://mailchi.mp/a95a68faaac8/olas-mailing-list"
3838
target="_blank"
3939
rel="noopener noreferrer"
4040
>

frontend/constants/serviceTemplates.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ const AGENTS_FUN_COMMON_TEMPLATE: Pick<
9898
ServiceTemplate,
9999
'env_variables' | 'hash' | 'image' | 'description' | 'service_version'
100100
> = {
101-
hash: 'bafybeidozytbbt3ktgx67it5kzjpkotzol7oggi233lqtuqupb3tjjn3ty',
101+
hash: 'bafybeihokbwvtkapycqle3fi4ew76t2yuyaaf7jozf3sjmjdowile3xy2e',
102102
image:
103103
'https://gateway.autonolas.tech/ipfs/QmQYDGMg8m91QQkTWSSmANs5tZwKrmvUCawXZfXVVWQPcu',
104104
description: 'Memeooorr @twitter_handle', // should be overwritten with twitter username
105-
service_version: 'v0.3.0-alpha7',
105+
service_version: 'v0.3.0-alpha8',
106106
env_variables: {
107107
BASE_LEDGER_RPC: {
108108
name: 'Base ledger RPC',
@@ -246,7 +246,7 @@ export const AGENTS_FUN_CELO_TEMPLATE: ServiceTemplate = {
246246
export const MODIUS_SERVICE_TEMPLATE: ServiceTemplate = {
247247
agentType: AgentType.Modius,
248248
name: 'Optimus', // Should be unique across all services and not be updated
249-
hash: 'bafybeiefvkhutqcaw4h6bhzok7pc25hmcyvgce6oqel7mj5ro6nqm2x55q',
249+
hash: 'bafybeigze75dsdbqb3uf5mutdaquvh2lxaga25ybvf7npmkome3gvxqqcu',
250250
description: 'Optimus',
251251
image:
252252
'https://gateway.autonolas.tech/ipfs/bafybeiaakdeconw7j5z76fgghfdjmsr6tzejotxcwnvmp3nroaw3glgyve',

frontend/constants/urls.ts

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const SWAP_CELO_URL: Url =
2020
// olas.network
2121
export const OPERATE_URL: Url = 'https://olas.network/operate';
2222
export const FAQ_URL: Url = 'https://olas.network/operate#faq';
23+
export const TERMS_AND_CONDITIONS_URL: Url = 'https://olas.network/pearl-terms';
2324
export const DOWNLOAD_URL: Url = 'https://olas.network/operate#download';
2425

2526
// thegraph

templates/memeooorr.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: "Memeooorr"
22
description: "Memeooorr @twitter_handle"
3-
hash: bafybeidozytbbt3ktgx67it5kzjpkotzol7oggi233lqtuqupb3tjjn3ty
3+
hash: bafybeihokbwvtkapycqle3fi4ew76t2yuyaaf7jozf3sjmjdowile3xy2e
44
image: https://gateway.autonolas.tech/ipfs/QmQYDGMg8m91QQkTWSSmANs5tZwKrmvUCawXZfXVVWQPcu
5-
service_version: v0.3.0-alpha7
5+
service_version: v0.3.0-alpha8
66
home_chain: "base"
77
configurations:
88
base:

0 commit comments

Comments
 (0)