Skip to content

Commit

Permalink
Merge pull request #331 from skalenetwork/ecosystem-update
Browse files Browse the repository at this point in the history
Portal Ecosystem update
  • Loading branch information
dmytrotkk authored Aug 20, 2024
2 parents 3020403 + b4a89b0 commit cf6e105
Show file tree
Hide file tree
Showing 113 changed files with 4,672 additions and 1,825 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ src/metadata/faucet.json

public/sitemap.xml
public/robots.txt

packages/*/node_modules
packages/*/dist
tools/*
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,9 @@ node generate-imports.cjs ./src/assets/validators

bash generate_sitemap.sh

echo "Building packages..."
bun run build:packages
bun i

echo "Building..."
bun run build
bun run build:portal
Binary file modified bun.lockb
Binary file not shown.
6 changes: 4 additions & 2 deletions config/legacy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
},
theme: {
mode: 'dark',
vibrant: true
}
vibrant: true,
primary: '#93B8EC',
background: '#000000',
},
}
32 changes: 31 additions & 1 deletion config/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import { type interfaces } from '@skalenetwork/metaport'
export const METAPORT_CONFIG: interfaces.MetaportConfig = {
theme: {
mode: 'dark',
vibrant: true
vibrant: true,
primary: '#93B8EC',
background: '#000000',
},
mainnetEndpoint: 'https://cloudflare-eth.com/',
skaleNetwork: "mainnet",
Expand Down Expand Up @@ -109,6 +111,9 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
"adorable-quaint-bellatrix": {},
"honorable-steel-rasalhague": {
hub: "elated-tan-skat"
},
"green-giddy-denebola": {
hub: "elated-tan-skat"
}
}
}
Expand Down Expand Up @@ -237,6 +242,9 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
},
'honorable-steel-rasalhague': {
wrapper: '0xa5274efA35EbeFF47C1510529D9a8812F95F5735'
},
'green-giddy-denebola': {
wrapper: '0xa5274efA35EbeFF47C1510529D9a8812F95F5735'
}
}
}
Expand Down Expand Up @@ -398,6 +406,10 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
mainnet: {
clone: true,
hub: 'elated-tan-skat'
},
"green-giddy-denebola": {
clone: true,
hub: "elated-tan-skat"
}
}
}
Expand Down Expand Up @@ -474,6 +486,24 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
}
},
"green-giddy-denebola": { // nebula connections
eth: {
eth: {
address: '0xaB01BAd2C86e24D371A13eD6367bdCa819589C5D',
chains: {
'elated-tan-skat': {
clone: true
},
mainnet: {
clone: true,
hub: 'elated-tan-skat'
},
"honorable-steel-rasalhague": {
clone: true,
hub: "elated-tan-skat"
}
}
}
},
erc20: {
skl: {
address: "0x7F73B66d4e6e67bCdeaF277b9962addcDabBFC4d",
Expand Down
Loading

0 comments on commit cf6e105

Please sign in to comment.