Skip to content

Commit

Permalink
modified: components/Card/Card.tsx
Browse files Browse the repository at this point in the history
	modified:   components/EcosystemApps/EcosystemApps.tsx
	modified:   pages/user-guides/block-explorers.mdx
	modified:   pages/user-guides/getting-tokens.mdx
  • Loading branch information
Cordtus committed May 9, 2024
1 parent b7371bf commit 848fdd0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 12 deletions.
4 changes: 2 additions & 2 deletions components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function Card({ image, title, description, href }: CardProps) {
target="_blank"
rel="noopener noreferrer"
>
<div>
<Image src={image} alt={title} layout="responsive" width={700} height={475} priority />
<div className="relative w-full h-80"> {/* Adjust height as needed to match your design */}
<Image src={image} alt={title} width={700} height={475} priority />
</div>
<div className="flex-1 p-4 bg-gray-100 dark:bg-gray-800">
<p className="text-lg font-semibold mb-2">{title}</p>
Expand Down
2 changes: 1 addition & 1 deletion components/EcosystemApps/EcosystemApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const EcosystemApps = () => {
appData.forEach(app => app.tags.forEach(tag => tags.add(tag)));
setAllTags(Array.from(tags));
}, []);
// Filter by "title" and "tag" fields from appData.ts
// Filter by "title" and "tag" fields from appData.ts // Filter by "title" and "tag" fields from appData.ts
const filteredApps = useMemo(() => (
appData.filter(app =>
app.title.toLowerCase().includes(searchTerm.toLowerCase()) ||
Expand Down
5 changes: 4 additions & 1 deletion pages/user-guides/block-explorers.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Tabs } from "nextra/components";
import { Callout } from "nextra/components";

# Block Explorers

Expand All @@ -18,7 +19,9 @@ Most block explorers offer tools for viewing, and sometimes even interacting wit

- Smart Contracts: Query smart contract states, deployments and interactions with other wallets or addresses. Some may include the raw code for the contract.

> 📘 Note: In rare cases, some information may be misinterpreted. Off-chain data should be used as a guide only.
<Callout type="info" emoji="📘">
Note: In rare cases, some information may be misinterpreted. Off-chain data should be used as a guide only.
</Callout>

## Sei Explorers

Expand Down
30 changes: 22 additions & 8 deletions pages/user-guides/getting-tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,37 @@ import { Callout } from "nextra/components";
Note that Sei may not be tradable in your region, subject to local laws and restrictions.
</Callout>

There are a few ways to acquire tokens on the Sei Mainnet:
## Acquiring tokens on Sei Networks

## Centralized Exchanges
### Centralized Exchanges

Purchasing SEI through centralized exchanges is the easiest method. $SEI is available on several major exchanges including:
- [Binance](https://www.binance.com/en-CA/how-to-buy/sei)
- [BitGet](https://www.bitget.com/web3/academy/experience-sei)
- [KuCoin](https://www.kucoin.com/how-to-buy/sei)

## Bridging
### Bridging

Bridging is essential for transferring tokens between different blockchains. This allows you to utilize tokens from various chains on the Sei network in their wrapped forms. It's crucial to verify the compatibility of the wrapped versions of your tokens on the Sei chain. For the best bridging experience, visit the [official Sei Bridge app](https://app.sei.io/bridge).
Bridging is essential for transferring tokens between different blockchains. This allows you to utilize tokens from various chains on the Sei network in their wrapped forms. It's crucial to verify the compatibility of the wrapped versions of your tokens on the Sei chain.

## Faucets
For the best bridging experience, visit the [Sei Bridge page](https://app.sei.io/bridge).

Faucets are available for acquiring small amounts of tokens on the Sei public devnet (arctic-1) for testing and development:
- [(Discord gated) STAKEME Faucet](https://sei-evm.faucetme.pro/)
- [(Github gated) NIMA Faucet](https://sei-faucet.nima.enterprises/)
### Faucets

Faucets dispensing small amounts of tokens for development/testing are available on both the public testnet (atlantic-2) and devnet (arctic-1).

These tokens bear no value, however please utilize small amounts when possible, as the supplied amounts are limited and the faucets all Discord-gated (unless specified).

#### Sei Network provided

- [Arctic-1 Devnet](arctic-1.app.sei.io/faucet)

- [Atlantic-2 Testnet](atlantic-2.app.sei.io/faucet)

#### Third-party

- ['STAKEME' (Arctic-1 Devnet)](https://sei-evm.faucetme.pro/)

- ['NIMA' (Arctic-1 Devnet)](https://sei-faucet.nima.enterprises/) (Github gated)

For additional faucet resources, please refer to our [chain registry](https://github.com/sei-protocol/chain-registry/blob/main/chains.json).

0 comments on commit 848fdd0

Please sign in to comment.