Skip to content

Commit

Permalink
update: change text oracle (#1012)
Browse files Browse the repository at this point in the history
  • Loading branch information
ninhxuanhuan authored Feb 21, 2025
1 parent aae75ff commit 22115f8
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
REACT_APP_SITE_TITLE="Oraichain (ORAI) Blockchain Explorer"
REACT_APP_SITE_DESC="AI-Powered Data Oracle"
REACT_APP_SITE_KEYWORDS="Oraichain, Oraiscan, AI Oracle"
REACT_APP_SITE_DESC="AI-Powered Data blockchain oracle"
REACT_APP_SITE_KEYWORDS="Oraichain, Oraiscan, AI blockchain oracle"
REACT_APP_SITE_URL=https://api.testnet.scan.orai.io
REACT_APP_SITE_TITLE_FOR_SHARE="Oraichain (ORAI) Blockchain Explorer"
REACT_APP_API_PROD=https://api.scan.orai.io/v1
Expand Down
8 changes: 4 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
<title>Oraichain (ORAI) Blockchain Explorer</title>
<meta
name="description"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and Oracle Services"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and blockchain oracle Services"
/>
<meta name="keywords" content="Oraichain, Oraiscan, AI Oracle" />
<meta name="keywords" content="Oraichain, Oraiscan, AI blockchain oracle" />

<meta property="og:url" content="https://scan.orai.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Oraichain (ORAI) Blockchain Explorer" />
<meta
property="og:description"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and Oracle Services"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and blockchain oracle Services"
/>
<meta property="og:image" content="https://scan.orai.io/orai-rectangle.png" />

Expand All @@ -42,7 +42,7 @@
<meta name="twitter:title" content="Oraichain (ORAI) Blockchain Explorer" />
<meta
name="twitter:description"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and Oracle Services"
content="A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and blockchain oracle Services"
/>
<meta name="twitter:image" content="https://scan.orai.io/orai-rectangle.png" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataSourcesDetail/RequestTableMobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function({blockData = {}}) {
</div>
</div>
<div className={cx("block-row", "block-row-desc")}>
<div className={cx("left")}> Oracle Script </div>
<div className={cx("left")}> Blockchain oracle Script </div>
<div className={cx("right-desc")}> #03 Band Standard Dataset (Crypto) </div>
</div>
<div className={cx("block-row", "block-row-desc")}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Footer = memo(() => {
<div className={cx("intro")}>
<OraiLogo className={cx("intro-logo")} />
<div className={cx("intro-description")}>
A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and oracle Services
A search engine for data and service information within Oraichain network - AI Layer 1 for Data Economy and blockchain oracle Services
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/NavBar/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const initialNavLinks = [
title: "Ecosystem",
children: [
{
name: "AI ORACLES",
name: "AI BLOCKCHAIN ORACLES",
list: [
{
title: "Price Feed",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Wallet/AiServiceFee/AiServiceFee.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ const AiServiceFee = memo(({moniker, address, pubkey}) => {
) : !isNil(executorData) && executorData?.data?.is_active ? (
<FormProvider {...methods}>
<div className={cx("your-validator-card")}>
<div className={cx("your-validator-card-header")}>Your AI Oracle service fees</div>
<div className={cx("your-validator-card-header")}>Your AI blockchain oracle service fees</div>
<div className={cx("your-validator-card-body")}>
{isLargeScreen ? (
<Grid container spacing={0}>
Expand Down Expand Up @@ -404,7 +404,7 @@ const AiServiceFee = memo(({moniker, address, pubkey}) => {
</FormProvider>
) : (
<div className={cx("your-validator-card")}>
<div className={cx("your-validator-card-header")}>Your AI Oracle service fees</div>
<div className={cx("your-validator-card-header")}>Your AI blockchain oracle service fees</div>
<div className={cx("your-validator-card-body")}>
<Grid container spacing={0}>
<Grid item xs={6} className={cx("validator-detail")}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Wallet/AiServiceFee/AiServiceFeeSkeleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const AiServiceFeeSkeleton = memo(({isLargeScreen}) => {

return (
<div className={cx("your-validator-card")}>
<div className={cx("your-validator-card-header")}>Your AI Oracle service fees</div>
<div className={cx("your-validator-card-header")}>Your AI blockchain oracle service fees</div>
<div className={cx("your-validator-card-body")}>
{isLargeScreen ? (
<Grid container spacing={0}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/NavigateBackBar/NavigateBackBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const NavigateBackBar = ({ type, id = "" }) => {
return (
<NavLink className={cx("title")} to={"/oracle-scripts"}>
{" "}
<LeftArrowIcon className={cx("title-icon")} /> Oracle script details
<LeftArrowIcon className={cx("title-icon")} /> Blockchain oracle script details
</NavLink>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/TogglePageBar/TogglePageBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const TogglePageBar = ({type}) => {
return (
<div className={cx("title")}>
{" "}
<OracleScriptsTabIcon className={cx("title-icon")} /> Oracle Scripts
<OracleScriptsTabIcon className={cx("title-icon")} /> Blockchain oracle Scripts
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/OracleScripts/OracleScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const OracleScripts = () => {
titleSection = (
<Container fixed>
<TitleWrapper>
<PageTitle title={"Oracle Scripts"} />
<PageTitle title={"Blockchain oracle scripts"} />
<StatusBox />
</TitleWrapper>
</Container>
Expand Down

0 comments on commit 22115f8

Please sign in to comment.