Skip to content

Commit 7547181

Browse files
authored
[HotFix] change v12 (#251)
1 parent a0bb007 commit 7547181

28 files changed

+113
-70
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Parameters
99

1010
Licensor: Composability Labs
1111

12-
Licensed Work: Composability Labs spark-frontend
12+
Licensed Work: Composability Labs v12-frontend
1313

1414
Change Date: The earlier of 2028-07-24
1515

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Spark
1+
# V12
22

3-
## What is Spark?
3+
## What is V12?
44

5-
Spark is an order book, the Fuel.network, revolutionizing financial services with its integrated suite of
5+
V12 is an order book, the Fuel.network, revolutionizing financial services with its integrated suite of
66
offerings.
77

88

@@ -13,11 +13,11 @@ offerings.
1313
- Typescript
1414

1515
This frontend project is designed to provide users with a seamless and intuitive experience when interacting with the
16-
Spark DeFi platform.
16+
V12 DeFi platform.
1717

1818
### Getting Started
1919

20-
To get started with Spark, clone the repository and follow these commands:
20+
To get started with V12, clone the repository and follow these commands:
2121

2222
```bash
2323
# Install dependencies
@@ -45,6 +45,6 @@ This project is licensed under the Business Source License 1.1. Please see the L
4545

4646
### More Information
4747

48-
For more information on Spark and how to get involved, please visit our [official website](https://docs.sprk.fi/).
48+
For more information on V12 and how to get involved, please visit our [official website](https://docs.sprk.fi/).
4949

5050

index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<!-- HTML Meta Tags -->
5-
<title>Spark</title>
5+
<title>V12</title>
66
<meta charset="utf-8" />
77
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport" />
88
<meta content="A Decentralized Order Book on Fuel.Network" name="description" />
@@ -18,8 +18,8 @@
1818
<!-- Facebook Meta Tags -->
1919
<meta content="https://app.sprk.fi" property="og:url" />
2020
<meta content="website" property="og:type" />
21-
<meta content="Spark" property="og:title" />
22-
<meta content="Order book based Fuel DEX. Trade cryptocurrencies with low fees and fast execution on Spark" property="og:description" />
21+
<meta content="V12" property="og:title" />
22+
<meta content="Order book based Fuel DEX. Trade cryptocurrencies with low fees and fast execution on V12" property="og:description" />
2323
<meta
2424
content="https://opengraph.b-cdn.net/production/documents/68187cdc-9a1a-4117-9f2c-d31b8b341b5d.png?token=LRhaXV-Rrz-IJOtW2ynpuFWnfdrp4tiWAlcdO2H4kbI&height=655&width=1200&expires=33245123728"
2525
property="og:image"
@@ -29,8 +29,8 @@
2929
<meta content="summary_large_image" name="twitter:card" />
3030
<meta content="app.sprk.fi" property="twitter:domain" />
3131
<meta content="https://app.sprk.fi" property="twitter:url" />
32-
<meta content="Spark" name="twitter:title" />
33-
<meta content="Order book based Fuel DEX. Trade cryptocurrencies with low fees and fast execution on Spark" name="twitter:description" />
32+
<meta content="V12" name="twitter:title" />
33+
<meta content="Order book based Fuel DEX. Trade cryptocurrencies with low fees and fast execution on V12" name="twitter:description" />
3434
<meta
3535
content="https://opengraph.b-cdn.net/production/documents/68187cdc-9a1a-4117-9f2c-d31b8b341b5d.png?token=LRhaXV-Rrz-IJOtW2ynpuFWnfdrp4tiWAlcdO2H4kbI&height=655&width=1200&expires=33245123728"
3636
name="twitter:image"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "spark-frontend",
2+
"name": "v12-frontend",
33
"version": "0.0.1",
44
"private": true,
55
"homepage": "https://app.sprk.fi",

public/apple-touch-icon.png

6.05 KB
Loading

public/favicon-16x16.png

233 Bytes
Loading

public/favicon-32x32.png

633 Bytes
Loading

public/favicon.ico

13.6 KB
Binary file not shown.

public/pwa-192x192.png

6.67 KB
Loading

public/pwa-512x512.png

25.9 KB
Loading

public/pwa-maskable-192x192.png

5.4 KB
Loading

public/pwa-maskable-512x512.png

19.1 KB
Loading

public/site.webmanifest

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Spark",
3-
"short_name": "Spark",
2+
"name": "V12",
3+
"short_name": "V12",
44
"description": "A Decentralized Order Book on Fuel.Network",
55
"icons": [
66
{

src/assets/icons/logo-small.svg

+21-10
Loading

src/assets/icons/logo.svg

+21-1
Loading

src/assets/icons/sparkLogoIcon.svg

+21-5
Loading

src/components/Loader.tsx

+4-8
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,11 @@ const Loader: React.FC<Props> = ({ size = 64, hideText, text = "Loading", classN
2525

2626
export default Loader;
2727

28-
const rotate = keyframes`
29-
from {
30-
transform: rotate(0deg);
31-
}
32-
to {
33-
transform: rotate(360deg);
34-
}
28+
const pulse = keyframes`
29+
from { transform: scale(1.2); }
30+
to { transform: scale(1.5); }
3531
`;
3632

3733
const LoaderLogoImage = styled.img`
38-
animation: ${rotate} 4s linear infinite;
34+
animation: ${pulse} 1s infinite ease-in-out alternate;
3935
`;

src/constants/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export const MINIMAL_ETH_REQUIRED = 25000; // 0.000025
3838
// const WC_PROJECT_ID = "cf4ad9eca02fdf75b8c6ef0b687ddd16";
3939

4040
// const METADATA = {
41-
// name: "Spark",
42-
// description: "Spark is the fastest onchain order book based on Fuel Network",
41+
// name: "V12",
42+
// description: "V12 is the fastest onchain order book based on Fuel Network",
4343
// url: location.href,
4444
// icons: ["https://app.sprk.fi/pwa-192x192.png"],
4545
// };

src/screens/Assets/MainAssets/InfoBlockAssets.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const InfoBlockAssets = () => {
2626
Why do I have to deposit anything?
2727
</TextTitle>
2828
<TextInfo type={TEXT_TYPES.TEXT}>
29-
Deposited assets stores on-chain in a smart-contract for quick order execution. Spark doesn’t store anything. We
29+
Deposited assets stores on-chain in a smart-contract for quick order execution. V12 doesn’t store anything. We
3030
are not a CEX.
3131
</TextInfo>
3232
</InfoContainer>

src/screens/Assets/MainAssets/MainAssets.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const MainAssets: React.FC<MainAssetsProps> = observer(({ setStep }) => {
8383
primary
8484
onClick={() => mixPanelStore.trackEvent(MIXPANEL_EVENTS.CLICK_ASSETS, { page_name: location.pathname })}
8585
>
86-
Assets in Spark
86+
Assets in V12
8787
</TextTitle>
8888
<CloseButton alt="Close Assets" src={closeThin} onClick={closeAssets} />
8989
</HeaderBlock>
@@ -120,7 +120,7 @@ const MainAssets: React.FC<MainAssetsProps> = observer(({ setStep }) => {
120120
<DepositedAssets alignItems="center" gap="20px" justifyContent="center" column>
121121
<DepositAssets />
122122
<TextTitleDeposit type={TEXT_TYPES.TEXT_BIG}>
123-
It looks like you don’t have assets in Spark. Tap the{" "}
123+
It looks like you don’t have assets in V12. Tap the{" "}
124124
<LinkStyled
125125
to="#"
126126
onClick={() => {

0 commit comments

Comments
 (0)