Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions modules/sdk-core/src/bitgo/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ const mainnetBase: EnvironmentTemplate = {
hemieth: {
baseUrl: 'https://explorer.hemi.xyz/api',
},
prividium: {
prividiumeth: {
baseUrl: 'https://explorer.prividium.zksync.dev/api', // TODO: update with mainnet URL when available
},
fluenteth: {
Expand Down Expand Up @@ -525,7 +525,7 @@ const testnetBase: EnvironmentTemplate = {
hemieth: {
baseUrl: 'https://testnet.explorer.hemi.xyz/api',
},
prividium: {
prividiumeth: {
baseUrl: 'https://explorer.testnet-prividium.zksync.dev/api',
},
fluenteth: {
Expand Down
12 changes: 6 additions & 6 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2453,11 +2453,11 @@ export const allCoinsAndTokens = [

account(
'1cc2170d-c24d-4179-b0eb-155de0f46617',
'prividium',
'prividiumeth',
'Prividium',
Networks.main.prividium,
Networks.main.prividiumeth,
18,
UnderlyingAsset.PRIVIDIUM,
UnderlyingAsset.PRIVIDIUMETH,
BaseUnit.ETH,
[
...EVM_FEATURES,
Expand All @@ -2471,11 +2471,11 @@ export const allCoinsAndTokens = [
),
account(
'b0067fb1-d00d-4959-981c-6f6009862418',
'tprividium',
'tprividiumeth',
'Testnet Prividium',
Networks.test.prividium,
Networks.test.prividiumeth,
18,
UnderlyingAsset.PRIVIDIUM,
UnderlyingAsset.PRIVIDIUMETH,
BaseUnit.ETH,
[
...EVM_FEATURES,
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export enum CoinFamily {
POLYGON = 'polygon',
POLYX = 'polyx',
PHRS = 'phrs',
PRIVIDIUM = 'prividium', // Prividium L2
PRIVIDIUMETH = 'prividiumeth', // Prividium L2
CTC = 'ctc',
HYPEEVM = 'hypeevm',
HYPERLIQUID = 'hyperliquid', // HyperCore L1
Expand Down Expand Up @@ -648,7 +648,7 @@ export enum UnderlyingAsset {
POLYGON = 'polygon',
PHRS = 'phrs',
PLUME = 'plume',
PRIVIDIUM = 'prividium', // Prividium L2
PRIVIDIUMETH = 'prividiumeth', // Prividium L2
CTC = 'ctc',
HYPEEVM = 'hypeevm',
HYPERLIQUID = 'hyperliquid', // HyperCore L1
Expand Down
12 changes: 6 additions & 6 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,10 @@ export const ofcCoins = [
),
ofc(
'7a3c5dee-ea51-4b1a-8871-b7283d1dc516',
'ofcprividium',
'Prividium',
'ofcprividiumeth',
'Prividium Ethereum',
18,
UnderlyingAsset.PRIVIDIUM,
UnderlyingAsset.PRIVIDIUMETH,
CoinKind.CRYPTO
),
tofc(
Expand All @@ -372,10 +372,10 @@ export const ofcCoins = [
),
tofc(
'7d18cdc5-a7da-4c76-8ce0-f80c391f80b3',
'ofctprividium',
'Prividium Testnet',
'ofctprividiumeth',
'Prividium Ethereum Testnet',
18,
UnderlyingAsset.PRIVIDIUM,
UnderlyingAsset.PRIVIDIUMETH,
CoinKind.CRYPTO
),
ofc(
Expand Down
16 changes: 8 additions & 8 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2494,18 +2494,18 @@ class HemiEthTestnet extends Testnet implements EthereumNetwork {
nativeCoinOperationHashPrefix = '743111';
}

class Prividium extends Mainnet implements EthereumNetwork {
name = 'Prividium';
family = CoinFamily.PRIVIDIUM;
class PrividiumETH extends Mainnet implements EthereumNetwork {
name = 'Prividium Ethereum Mainnet';
family = CoinFamily.PRIVIDIUMETH;
explorerUrl = 'https://explorer.prividium.zksync.dev/tx/'; // TODO: update with mainnet URL when available
accountExplorerUrl = 'https://explorer.prividium.zksync.dev/address/'; // TODO: update with mainnet URL when available
chainId = 9999999; // TODO: update with mainnet chain ID when available
nativeCoinOperationHashPrefix = '9999999';
}

class PrividiumTestnet extends Testnet implements EthereumNetwork {
name = 'Prividium Testnet';
family = CoinFamily.PRIVIDIUM;
class PrividiumETHTestnet extends Testnet implements EthereumNetwork {
name = 'Prividium Ethereum Testnet';
family = CoinFamily.PRIVIDIUMETH;
explorerUrl = 'https://explorer.testnet-prividium.zksync.dev/tx/';
accountExplorerUrl = 'https://explorer.testnet-prividium.zksync.dev/address/';
chainId = 8022834;
Expand Down Expand Up @@ -2752,7 +2752,7 @@ export const Networks = {
hederaEVM: Object.freeze(new HederaEVM()),
hemieth: Object.freeze(new HemiEth()),
hppeth: Object.freeze(new Hppeth()),
prividium: Object.freeze(new Prividium()),
prividiumeth: Object.freeze(new PrividiumETH()),
icp: Object.freeze(new Icp()),
ip: Object.freeze(new IP()),
initia: Object.freeze(new Initia()),
Expand Down Expand Up @@ -2877,7 +2877,7 @@ export const Networks = {
hedera: Object.freeze(new HederaTestnet()),
hoodeth: Object.freeze(new HoodethTestnet()),
hppeth: Object.freeze(new HppethTestnet()),
prividium: Object.freeze(new PrividiumTestnet()),
prividiumeth: Object.freeze(new PrividiumETHTestnet()),
hederaEVM: Object.freeze(new HederaEVMTestnet()),
hemieth: Object.freeze(new HemiEthTestnet()),
icp: Object.freeze(new IcpTestnet()),
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/test/unit/fixtures/expectedColdFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const expectedColdFeatures = {
'okbxlayer',
'osmo',
'plume',
'prividium',
'prividiumeth',
'polyx',
'sgb',
'sei',
Expand Down Expand Up @@ -190,7 +190,7 @@ export const expectedColdFeatures = {
'tworld',
'tphrs',
'tplume',
'tprividium',
'tprividiumeth',
'tctc',
'thypeevm',
'tlineaeth',
Expand Down
Loading