Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eclipse devnet #7

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
059652a
make small changes for initial deploy for eclipse devnet
dlin128 Oct 26, 2023
f77ad31
too many dependencies on cluster enum. backing out a few changes
dlin128 Oct 26, 2023
d69468c
adjust eslint rules for now and one more change to default to devnet
dlin128 Oct 26, 2023
11474de
Update all Solana references to Eclipse
neelsomani Nov 22, 2023
15ea2ed
Merge remote-tracking branch 'origin' into eclipse_devnet
neelsomani Nov 22, 2023
45e1c6d
Enable testnet
neelsomani Dec 13, 2023
9b86921
update devnet to devnet2
dlin128 Feb 21, 2024
e1a9885
add token2022 program
dlin128 Feb 21, 2024
0631b6d
Add nifty asset program pages
febo Mar 6, 2024
579c8ae
Bump version
febo Mar 26, 2024
0cb8a2f
Add manager extension details
febo Mar 26, 2024
3ab3bd4
Show delegate roles
febo Mar 26, 2024
cc700c8
Add asset rule set information
febo Mar 26, 2024
f736e44
Update nifty package version
febo Mar 28, 2024
1353386
Update nifty sdk version
febo Apr 6, 2024
454fb62
Add support to proxied assets
febo Apr 6, 2024
d8e409d
Bump nifty asset version
febo Apr 11, 2024
20fdc24
Add grouping delegate
febo Apr 11, 2024
05764a8
fix: replace sol symbol with eth symbol
amilz Apr 12, 2024
4d7cb57
Add bucket and properties extensions
febo May 24, 2024
7781f36
Merge pull request #2 from amilz/master
dlin128 Jul 29, 2024
ac552b3
minor changes for mainnet-beta
dandlezzz Jul 29, 2024
6bb0904
Merge pull request #3 from nifty-oss/febo/nifty-asset
dlin128 Aug 5, 2024
eacaf15
Fix lint
febo Aug 6, 2024
d00ee59
Bump package version
febo Aug 6, 2024
06e067b
Merge pull request #5 from febo/nifty-lint
dlin128 Aug 6, 2024
5235404
Fix writable badge color for ix cards (#359)
ngundotra Aug 6, 2024
43266a2
Added ANS (AllDomains) integration
alinalexa Aug 23, 2024
4defa12
Add Finternet program on devnet (#363)
dhruvsol Aug 26, 2024
832ef85
Add support for showing self-cpi (#364)
ngundotra Aug 26, 2024
bb50fc9
added finternet program ids mainnet (#365)
dhruvsol Aug 27, 2024
9f732e0
fixed MAINNET domain search and some cleanup
alinalexa Aug 28, 2024
25ddfdb
fixed some formatting issues
alinalexa Aug 28, 2024
da1f137
Merge pull request #6 from onsol-labs/ans-integration
dandlezzz Aug 28, 2024
17e257d
specify node version
dandlezzz Aug 28, 2024
7a9c150
fix: add logo support for PYUSD & USDP (#347)
catalinred Aug 28, 2024
e54adfb
Fix T22 Metadata Loadinng (#366)
ngundotra Aug 29, 2024
04376fd
Add fix for viewing stake accounts due to rpc method changes (#367)
ngundotra Aug 29, 2024
4cfbb76
reorder imports
dandlezzz Aug 29, 2024
18a39ca
minor fixes to appease the linter
dandlezzz Aug 29, 2024
dcafe27
add amplify config to repo
dandlezzz Aug 29, 2024
3729b99
merge in upstream
dandlezzz Aug 29, 2024
3a5f2da
typings and linter help
dandlezzz Sep 4, 2024
a315f22
minor css fixes
dandlezzz Sep 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"extends": ["next/core-web-vitals", "@solana/eslint-config-solana"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-duplicate-enum-values" : "off",
"simple-import-sort/imports": "off"
},
"plugins": ["testing-library"],
"overrides": [
// Only uses Testing Library lint rules in test files
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img alt="Solana" src="https://i.imgur.com/IKyzQ6T.png" width="250" />
<img alt="Eclipse" src="https://i.imgur.com/IKyzQ6T.png" width="250" />
</p>

# Solana Explorer
Expand Down
23 changes: 23 additions & 0 deletions amplify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

version: 1
frontend:
phases:
preBuild:
commands:
- npm i -g pnpm
- corepack enable
- pnpm install --frozen-lockfile
build:
commands:
- pnpm run build
postBuild:
commands:
- pwd
- ls -al
env:
variables:
node-linker: hoisted
artifacts:
baseDirectory: .next
files:
- '**/*'
4 changes: 2 additions & 2 deletions app/address/[address]/anchor-account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `Contents of the Anchor Account at address ${props.params.address} on Solana`,
title: `Anchor Account Data | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `Contents of the Anchor Account at address ${props.params.address} on Eclipse`,
title: `Anchor Account Data | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/anchor-program/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `The Interface Definition Language (IDL) file for the Anchor program at address ${props.params.address} on Solana`,
title: `Anchor Program IDL | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `The Interface Definition Language (IDL) file for the Anchor program at address ${props.params.address} on Eclipse`,
title: `Anchor Program IDL | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/attributes/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `Attributes of the Metaplex NFT with address ${props.params.address} on Solana`,
title: `Metaplex NFT Attributes | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `Attributes of the Metaplex NFT with address ${props.params.address} on Eclipse`,
title: `Metaplex NFT Attributes | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/blockhashes/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ type Props = Readonly<{
}>;

export const metadata = {
description: `Recent blockhashes on Solana`,
title: `Recent Blockhashes | Solana`,
description: `Recent blockhashes on Eclipse`,
title: `Recent Blockhashes | Eclipse`,
};

export default function RecentBlockhashesPage(props: Props) {
Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/concurrent-merkle-tree/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `Contents of the SPL Concurrent Merkle Tree at address ${props.params.address} on Solana`,
title: `Concurrent Merkle Tree | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `Contents of the SPL Concurrent Merkle Tree at address ${props.params.address} on Eclipse`,
title: `Concurrent Merkle Tree | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/domains/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `Domain names owned by the address ${props.params.address} on Solana`,
title: `Domains | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `Domain names owned by the address ${props.params.address} on Eclipse`,
title: `Domains | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/entries/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `Entries of the address lookup table at ${props.params.address} on Solana`,
title: `Address Lookup Table Entries | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `Entries of the address lookup table at ${props.params.address} on Eclipse`,
title: `Address Lookup Table Entries | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions app/address/[address]/instructions/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ type Props = Readonly<{

export async function generateMetadata(props: AddressPageMetadataProps): Promise<Metadata> {
return {
description: `A list of transactions that include an instruction involving the token with address ${props.params.address} on Solana`,
title: `Token Instructions | ${await getReadableTitleFromAddress(props)} | Solana`,
description: `A list of transactions that include an instruction involving the token with address ${props.params.address} on Eclipse`,
title: `Token Instructions | ${await getReadableTitleFromAddress(props)} | Eclipse`,
};
}

Expand Down
Loading