Skip to content

Commit

Permalink
feat: add quebecnet
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Dec 20, 2024
1 parent aa00787 commit b79f3cd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/beacon-dapp/src/utils/tzkt-blockexplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export class TzktBlockExplorer extends BlockExplorer {
[NetworkType.NAIROBINET]: 'https://nairobinet.tzkt.io',
[NetworkType.OXFORDNET]: 'https://oxfordnet.tzkt.io',
[NetworkType.PARISNET]: 'https://parisnet.tzkt.io',
[NetworkType.CUSTOM]: 'https://parisnet.tzkt.io'
[NetworkType.CUSTOM]: 'https://parisnet.tzkt.io',
[NetworkType.QUEBECNET]: 'https://quebecnet.tzkt.io'
}
) {
super(rpcUrls)
Expand Down
1 change: 1 addition & 0 deletions packages/beacon-types/src/types/beacon/NetworkType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ export enum NetworkType {
NAIROBINET = 'nairobinet',
OXFORDNET = 'oxfordnet',
PARISNET = 'parisnet',
QUEBECNET = 'quebecnet',
CUSTOM = 'custom'
}
1 change: 1 addition & 0 deletions packages/beacon-types/src/types/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export interface WebApp extends AppBase {
[NetworkType.NAIROBINET]?: string
[NetworkType.OXFORDNET]?: string
[NetworkType.PARISNET]?: string
[NetworkType.QUEBECNET]?: string
[NetworkType.CUSTOM]?: string
}
}
Expand Down
1 change: 1 addition & 0 deletions scripts/blockchains/tezos-sapling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export enum NetworkType {
NAIROBINET = 'nairobinet',
OXFORDNET = 'oxfordnet',
PARISNET = 'parisnet',
QUEBECNET = 'quebecnet',
CUSTOM = 'custom'
}

Expand Down
10 changes: 7 additions & 3 deletions scripts/blockchains/tezos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export enum NetworkType {
NAIROBINET = 'nairobinet',
OXFORDNET = 'oxfordnet',
PARISNET = 'parisnet',
QUEBECNET = 'quebecnet',
CUSTOM = 'custom'
}

Expand Down Expand Up @@ -76,7 +77,8 @@ export const tezosWebList: WebApp[] = [
[NetworkType.MUMBAINET]: 'https://metamask.tezos.com/',
[NetworkType.NAIROBINET]: 'https://metamask.tezos.com/',
[NetworkType.OXFORDNET]: 'https://metamask.tezos.com/',
[NetworkType.PARISNET]: 'https://metamask.tezos.com/'
[NetworkType.PARISNET]: 'https://metamask.tezos.com/',
[NetworkType.QUEBECNET]: 'https://metamask.tezos.com/'
}
},
{
Expand All @@ -103,7 +105,8 @@ export const tezosWebList: WebApp[] = [
[NetworkType.MUMBAINET]: 'https://mumbainet.kukai.app',
[NetworkType.NAIROBINET]: 'https://nairobinet.kukai.app',
[NetworkType.OXFORDNET]: 'https://oxfordnet.kukai.app',
[NetworkType.PARISNET]: 'https://parisnet.kukai.app'
[NetworkType.PARISNET]: 'https://parisnet.kukai.app',
[NetworkType.QUEBECNET]: 'https://quebecnet.kukai.app'
}
},

Expand All @@ -130,7 +133,8 @@ export const tezosWebList: WebApp[] = [
[NetworkType.MUMBAINET]: 'https://ghostnet.tzsafe.marigold.dev',
[NetworkType.NAIROBINET]: 'https://ghostnet.tzsafe.marigold.dev',
[NetworkType.OXFORDNET]: 'https://ghostnet.tzsafe.marigold.dev',
[NetworkType.PARISNET]: 'https://ghostnet.tzsafe.marigold.dev'
[NetworkType.PARISNET]: 'https://ghostnet.tzsafe.marigold.dev',
[NetworkType.QUEBECNET]: 'https://ghostnet.tzsafe.marigold.dev'
}
}
]
Expand Down

0 comments on commit b79f3cd

Please sign in to comment.