Skip to content

Commit

Permalink
Set up Pontus-X devnet and testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
csillag committed May 29, 2024
1 parent 2919650 commit 6aed13d
Show file tree
Hide file tree
Showing 9 changed files with 98 additions and 22 deletions.
11 changes: 9 additions & 2 deletions src/app/components/LayerPicker/LayerDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,20 @@ const getDetails = (t: TFunction): Details => ({
chainDecimalId: '23295',
docs: docs.sapphire,
},
[Layer.pontusx]: {
description: t('layerPicker.testnet.pontusx'),
[Layer.pontusxdev]: {
description: t('layerPicker.testnet.pontusxdev'),
rpcHttp: 'https://pontusx.not.si:443',
chainHexId: '0x7ec8',
chainDecimalId: '32456',
docs: docs.pontusx1,
},
[Layer.pontusx]: {
description: t('layerPicker.testnet.pontusxtest'),
rpcHttp: 'https://pontusx.not.si:443',
chainHexId: '0x7ec9',
chainDecimalId: '32457',
docs: docs.pontusx1,
},
},
})

Expand Down
9 changes: 8 additions & 1 deletion src/app/components/Search/search-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const searchSuggestionTerms = {
suggestedTokenFragment: 'mock',
},
cipher: undefined,
pontusxdev: undefined,
pontusx: undefined,
consensus: undefined,
},
Expand All @@ -50,12 +51,18 @@ export const searchSuggestionTerms = {
suggestedTokenFragment: 'USD',
},
cipher: undefined,
pontusx: {
pontusxdev: {
suggestedBlock: '390632',
suggestedTransaction: '0x244f71bcc67a0359c0d1e417b302ec3b358193769399e71f0112c58135f0fc82',
suggestedAccount: '0xC09c6A1d5538E7ed135d6146241c8da11e92130B',
suggestedTokenFragment: 'Ocean',
},
pontusx: {
suggestedBlock: '390632', // TODO
suggestedTransaction: '0x244f71bcc67a0359c0d1e417b302ec3b358193769399e71f0112c58135f0fc82', // TODO
suggestedAccount: '0xC09c6A1d5538E7ed135d6146241c8da11e92130B', // TODO
suggestedTokenFragment: 'Ocean', // TODO
},
consensus: undefined,
},
} satisfies SpecifiedPerEnabledLayer<LayerSuggestions>
Expand Down
7 changes: 4 additions & 3 deletions src/app/hooks/useAccountMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { getOasisAddress } from '../utils/helpers'
* since this function also includes caching.
*/
export const useAccountMetadata = (scope: SearchScope, address: string): AccountMetadataInfo => {
const isPontusX = scope.layer === Layer.pontusx
const isPontusX = scope.layer === Layer.pontusx || scope.layer === Layer.pontusxdev
const pontusXData = usePontusXAccountMetadata(address, { enabled: isPontusX })
const oasisData = useOasisAccountMetadata(scope.network, scope.layer, getOasisAddress(address), {
enabled: !isPontusX,
Expand All @@ -24,11 +24,12 @@ export const useSearchForAccountsByName = (
scope: SearchScope,
nameFragment = '',
): AccountNameSearchResults => {
const isValidPontusXSearch = scope.layer === Layer.pontusx && !!nameFragment
const isPontusX = scope.layer === Layer.pontusx || scope.layer === Layer.pontusxdev
const isValidPontusXSearch = isPontusX && !!nameFragment
const pontusXResults = useSearchForPontusXAccountsByName(scope.network, nameFragment, {
enabled: isValidPontusXSearch,
})
const isValidOasisSearch = scope.layer !== Layer.pontusx && !!nameFragment
const isValidOasisSearch = !isPontusX && !!nameFragment
const oasisResults = useSearchForOasisAccountsByName(scope.network, scope.layer, nameFragment, {
enabled: isValidOasisSearch,
})
Expand Down
30 changes: 24 additions & 6 deletions src/app/pages/ParatimeDashboardPage/LearningMaterials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const getContent = (t: TFunction) => {
},
},
[Layer.cipher]: undefined,
[Layer.pontusxdev]: undefined,
[Layer.pontusx]: undefined,
},
[Network.testnet]: {
Expand Down Expand Up @@ -100,20 +101,37 @@ const getContent = (t: TFunction) => {
},
},
[Layer.cipher]: undefined,
[Layer.pontusxdev]: {
primary: {
description: t('learningMaterials.pontusxdevnet.1.description'),
header: t('learningMaterials.pontusxdevnet.1.header'),
url: docs.pontusx1,
},
secondary: {
description: t('learningMaterials.pontusxdevnet.2.description'),
header: t('learningMaterials.pontusxdevnet.2.header'),
url: docs.pontusx2,
},
tertiary: {
description: t('learningMaterials.pontusxdevnet.3.description'),
header: t('learningMaterials.pontusxdevnet.3.header'),
url: docs.pontusx3,
},
},
[Layer.pontusx]: {
primary: {
description: t('learningMaterials.pontusx.1.description'),
header: t('learningMaterials.pontusx.1.header'),
description: t('learningMaterials.pontusxtestnet.1.description'),
header: t('learningMaterials.pontusxtestnet.1.header'),
url: docs.pontusx1,
},
secondary: {
description: t('learningMaterials.pontusx.2.description'),
header: t('learningMaterials.pontusx.2.header'),
description: t('learningMaterials.pontusxtestnet.2.description'),
header: t('learningMaterials.pontusxtestnet.2.header'),
url: docs.pontusx2,
},
tertiary: {
description: t('learningMaterials.pontusx.2.description'),
header: t('learningMaterials.pontusx.3.header'),
description: t('learningMaterials.pontusxtestnet.3.description'),
header: t('learningMaterials.pontusxtestnet.3.header'),
url: docs.pontusx3,
},
},
Expand Down
3 changes: 2 additions & 1 deletion src/app/utils/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export const getLayerLabels = (t: TFunction): Record<Layer, string> => ({
[Layer.emerald]: t('common.emerald'),
[Layer.sapphire]: t('common.sapphire'),
[Layer.cipher]: t('common.cipher'),
[Layer.pontusx]: t('common.pontusx'),
[Layer.pontusxdev]: t('pontusx.devnet'),
[Layer.pontusx]: t('pontusx.testnet'),
[Layer.consensus]: t('common.consensus'),
})

Expand Down
2 changes: 2 additions & 0 deletions src/app/utils/route-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export abstract class RouteUtils {
[Layer.emerald]: true,
[Layer.sapphire]: true,
[Layer.cipher]: false,
[Layer.pontusxdev]: false,
[Layer.pontusx]: false,
// Disable WIP Consensus on production and staging
[Layer.consensus]: !isStableDeploy,
Expand All @@ -51,6 +52,7 @@ export abstract class RouteUtils {
[Layer.emerald]: true,
[Layer.sapphire]: true,
[Layer.cipher]: false,
[Layer.pontusxdev]: true,
[Layer.pontusx]: true,
// Disable WIP Consensus on production and staging
[Layer.consensus]: !isStableDeploy,
Expand Down
27 changes: 24 additions & 3 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const sapphireConfig: LayerConfig = {
type: RuntimeTypes.Evm,
}

const pontusxConfig: LayerConfig = {
const pontusxDevConfig: LayerConfig = {
mainnet: {
activeNodes: undefined,
address: undefined,
Expand All @@ -123,7 +123,7 @@ const pontusxConfig: LayerConfig = {
tokens: [NativeToken.EUROe],
},
testnet: {
activeNodes: 1,
activeNodes: 3,
address: 'oasis1qr02702pr8ecjuff2z3es254pw9xl6z2yg9qcc6c',
blockGasLimit: 15_000_000,
runtimeId: '0000000000000000000000000000000000000000000000004febe52eb412b421',
Expand All @@ -134,6 +134,26 @@ const pontusxConfig: LayerConfig = {
type: RuntimeTypes.Evm,
}

const pontusxTestConfig: LayerConfig = {
mainnet: {
activeNodes: undefined,
address: undefined,
blockGasLimit: undefined,
runtimeId: undefined,
tokens: [NativeToken.EUROe],
},
testnet: {
activeNodes: 1,
address: 'oasis1qrg6c89655pmdxeel08qkngs02jnrfll5v9c508v',
blockGasLimit: 15_000_000,
runtimeId: '00000000000000000000000000000000000000000000000004a6f9071c007069',
tokens: [NativeToken.EUROe, NativeToken.TEST],
fiatCurrency: 'eur',
},
decimals: 18,
type: RuntimeTypes.Evm,
}

type LayersConfig = {
[key in Layer]: LayerConfig | null
}
Expand All @@ -142,7 +162,8 @@ export const paraTimesConfig = {
[Layer.cipher]: cipherConfig,
[Layer.emerald]: emeraldConfig,
[Layer.sapphire]: sapphireConfig,
[Layer.pontusx]: pontusxConfig,
[Layer.pontusxdev]: pontusxDevConfig,
[Layer.pontusx]: pontusxTestConfig,
[Layer.consensus]: null,
} satisfies LayersConfig

Expand Down
26 changes: 22 additions & 4 deletions src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@
"paratime": "Paratime",
"parentheses": "({{subject}})",
"percentage": "Percentage",
"pontusx": "Pontus-X",
"proposal": "Proposal",
"proposer": "Proposer",
"rank": "Rank",
Expand Down Expand Up @@ -295,7 +294,21 @@
"header": "Add the {{ layer }} Testnet to Hardhat",
"description": "Open up your hardhat.config.ts and drop in these lines."
},
"pontusx": {
"pontusxdevnet": {
"1": {
"header": "What is the Pontus-X Network?",
"description": "The Pontus-X Network is our official confidential EVM Compatible ParaTime offering a smart contract development environment that is compatible with the Ethereum Virtual Machine (EVM) focused on building a Federated Data Economy."
},
"2": {
"header": "Devnet Parameters",
"description": "The Devnet for Pontus-X may undergo frequent version upgrades."
},
"3": {
"header": "Adding the Pontus-X Devnet to Hardhat",
"description": "To integrate with Pontus-X devnet, open your hardhat.config.ts file and insert the following configurations."
}
},
"pontusxtestnet": {
"1": {
"header": "What is the Pontus-X Network?",
"description": "The Pontus-X Network is our official confidential EVM Compatible ParaTime offering a smart contract development environment that is compatible with the Ethereum Virtual Machine (EVM) focused on building a Federated Data Economy."
Expand All @@ -306,7 +319,7 @@
},
"3": {
"header": "Adding the Pontus-X Testnet to Hardhat",
"description": "To integrate with Pontus-X, open your hardhat.config.ts file and insert the following configurations."
"description": "To integrate with Pontus-X testnet, open your hardhat.config.ts file and insert the following configurations."
}
},
"token": {
Expand Down Expand Up @@ -516,7 +529,8 @@
"testnet": {
"emerald": "The Testnet of the EVM Compatible ParaTime providing a smart contract development environment.",
"sapphire": "The Testnet of the official confidential EVM Compatible ParaTime providing a smart contract development environment with EVM compatibility.",
"pontusx": "The Testnet of the official confidential EVM Compatible ParaTime offering a smart contract development environment that is compatible with the Ethereum Virtual Machine (EVM) focused on building a Federated Data Economy."
"pontusxdev": "The Devnet of the official confidential EVM Compatible ParaTime offering a smart contract development environment that is compatible with the Ethereum Virtual Machine (EVM) focused on building a Federated Data Economy.",
"pontusxtest": "The Testnet of the official confidential EVM Compatible ParaTime offering a smart contract development environment that is compatible with the Ethereum Virtual Machine (EVM) focused on building a Federated Data Economy."
}
},
"home": {
Expand Down Expand Up @@ -564,6 +578,10 @@
"online": "Online",
"outdated": "Out-of-date"
},
"pontusx": {
"devnet": "Pontus-X devnet",
"testnet": "Pontus-X testnet"
},
"search": {
"placeholder": "Address, Block, Contract, Transaction hash, Token name, etc.",
"error": {
Expand Down
5 changes: 3 additions & 2 deletions src/types/layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ const layerOrder: Record<Layer, number> = {
[Layer.sapphire]: 2,
[Layer.emerald]: 3,
[Layer.cipher]: 4,
[Layer.pontusx]: 5,
[Layer.pontusxdev]: 5,
[Layer.pontusx]: 6,
}

const hiddenLayers: Layer[] = [Layer.pontusx]
const hiddenLayers: Layer[] = [Layer.pontusxdev, Layer.pontusx]

export const orderByLayer = (itemA: HasLayer, itemB: HasLayer): number =>
layerOrder[itemA.layer] - layerOrder[itemB.layer]
Expand Down

0 comments on commit 6aed13d

Please sign in to comment.