diff --git a/docs/hackers/03-Build-With-Wallet-Tracker.mdx b/docs/hackers/03-Build-With-Wallet-Tracker.mdx index d5168f2735..099f29a6d0 100644 --- a/docs/hackers/03-Build-With-Wallet-Tracker.mdx +++ b/docs/hackers/03-Build-With-Wallet-Tracker.mdx @@ -12,8 +12,13 @@ import { ModalSmall, ModalWrapper, ModalLarge, + FeaturesContainer, // Importing new components + FeatureItem, + FeatureImage } from '@site/src/css/SharedStyling'; + + # Build with Wallet Tracker ![Banner](/assets/docs/hackers/build-with-wallet-tracker/BwWT.png) @@ -115,91 +120,130 @@ Wallet Tracker currently exists as two projects, each enhancing your experience The channel serves as your comprehensive portfolio tracker, offering a variety of features designed to keep you informed and up-to-date. -
-
-

1. Wallet Transactions Update

-

Stay informed with real-time updates on your wallet transactions.

- Wallet Transactions Update -
+ -{' '} -
+ +

1. Wallet Transactions Update

+

Stay informed with real-time updates on your wallet transactions.

+ Wallet Transactions Update +
+ +

2. Biweekly Performance Update

-

- Receive regular updates on your portfolio's performance every two weeks. -

- Biweekly Performance Update -
- -{' '} -
+

Receive regular updates on your portfolio's performance every two weeks.

+ Biweekly Performance Update + + +

3. Crypto Calendar for Web3 Events

Keep track of important web3 events with our dedicated crypto calendar.

- Crypto Calendar -
- -
-

4. Push and Uniswap V2 LP Staking APR Rates

-

Access the latest APR rates for Push and Uniswap V2 LP staking.

- APR Rates -
-
+ Crypto Calendar + + + +

4. Push and Uniswap V2 LP Staking APR Rates

+

Access the latest APR rates for Push and Uniswap V2 LP staking.

+ APR Rates +
+ + +

5. Active Token Approvals

+

Stay informed about your active token approvals to maintain control over your asset security.

+ APR Rates +
+ + +

6. DAO Proposals

+

Stay updated on proposals related to your held tokens to engage in governance effectively..

+ DAO Proposals +
+ + +

7. Recent Crypto Hacks

+

Stay informed about recent crypto hacks to protect your assets and take necessary precautions.

+ Hack News +
+ + +

8. Yield Opportunities

+

Stay informed about yield opportunities for tokens you hold to maximize your earnings and optimize your investments.

+ Yield +
+ + ### Wallet Tracker Chat The chatbot integrates all the functionalities of the channel into an interactive experience. Key features include: -
-
-

1. Check User's Wallet Worth and Token Holdings

-

Easily check the worth of your wallet and your token holdings. Use /portfolio [wallet address] [chain] to get your current token holding and asset valuation on the specified chain. Chain options include "eth", "pol", "bsc", "arb", "polzk". If not specified, you'll get the portfolio across all 5 chains.

- Wallet Worth and Token Holdings -
+ + + +

1. Check User's Wallet Worth and Token Holdings

+

Easily check the worth of your wallet and your token holdings. Use `/portfolio [wallet address] [chain]` to get your current token holding and asset valuation on the specified chain.

+ Wallet Worth and Token Holdings +
-{' '} -
+

2. Check Out Crypto Events

-

- Stay updated with upcoming crypto events. Use{' '} - /calendar [number of days] to get crypto events organized by - your favorite tokens within the specified number of days. -

- Crypto Events -
- -{' '} -
+

Stay updated with upcoming crypto events. Use `/calendar [number of days]` to get crypto events organized by your favorite tokens within the specified number of days.

+ Crypto Events + + +

3. Wallet Performance

-

- Monitor the performance of your wallet. Use{' '} - /performance [your wallet address] [no of days] [chain] to get - your wallet performance across the given days. -

- Wallet Performance -
- -
-

4. NFTs Portfolio

-

View your NFTs portfolio. Use /topnfts [your wallet address] [chain] to get the top recent NFTs in your wallet.

- NFTs Portfolio -
-
+

Monitor the performance of your wallet. Use `/performance [your wallet address] [no of days] [chain]` to get your wallet performance across the given days.

+ Wallet Performance + + + +

4. NFTs Portfolio

+

View your NFTs portfolio. Use `/topnfts [your wallet address] [chain]` to get the top recent NFTs in your wallet.

+ NFTs Portfolio +
+ + +

5. Token Approvals: View your NFTs portfolio. Use `/topnfts [your wallet address] [chain]` to get the top recent NFTs in your wallet.

+

View your NFTs portfolio. /topnfts [your wallet address] [chain] : Get the top recent NFTs in your wallet.

+ Token Approvals +
+ + +

6. Top Yields

+

Yield Opportunities for tokens you Hold. Use `/topyields [your wallet address] [chain]` to get the Yield Opportunities for tokens you Hold

+ Top Yields +
+ + + ### Additional features - **ENS and Unstoppable Domain Support:** Get support for Ethereum Name Service (ENS) and Unstoppable Domains. - **Multi-Chain Support for Wallet:** Enjoy support for multiple blockchain networks. diff --git a/src/css/SharedStyling.js b/src/css/SharedStyling.js index 163df7a518..920defb653 100644 --- a/src/css/SharedStyling.js +++ b/src/css/SharedStyling.js @@ -778,3 +778,32 @@ export const VideoContainer = styled.div` border: none; } `; + +// Features +export const FeaturesContainer = styled.div` + display: flex; + flex-wrap: wrap; + gap: 20px; + justify-content: space-between; + + @media (max-width: 768px) { + flex-direction: column; + } +`; + +export const FeatureItem = styled.div` + flex: 1 0 45%; // Takes roughly half the width of the container + margin-bottom: 20px; + padding: 10px; + border-radius: 8px; + + @media (max-width: 768px) { + flex-basis: 100%; // Full width on smaller screens + } +`; + +export const FeatureImage = styled.img` + width: 100%; + height: auto; + border-radius: 8px; +`; diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/approvals.png b/static/assets/docs/hackers/build-with-wallet-tracker/approvals.png new file mode 100644 index 0000000000..add36fdbb7 Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/approvals.png differ diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/dao.png b/static/assets/docs/hackers/build-with-wallet-tracker/dao.png new file mode 100644 index 0000000000..f7eb2b33c6 Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/dao.png differ diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/hack-news.png b/static/assets/docs/hackers/build-with-wallet-tracker/hack-news.png new file mode 100644 index 0000000000..55f777816e Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/hack-news.png differ diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/wtc-approvals.png b/static/assets/docs/hackers/build-with-wallet-tracker/wtc-approvals.png new file mode 100644 index 0000000000..7bc1728535 Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/wtc-approvals.png differ diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/wtc-yield.png b/static/assets/docs/hackers/build-with-wallet-tracker/wtc-yield.png new file mode 100644 index 0000000000..033ac53fa9 Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/wtc-yield.png differ diff --git a/static/assets/docs/hackers/build-with-wallet-tracker/yield.png b/static/assets/docs/hackers/build-with-wallet-tracker/yield.png new file mode 100644 index 0000000000..1efa4a134b Binary files /dev/null and b/static/assets/docs/hackers/build-with-wallet-tracker/yield.png differ