Skip to content

Commit

Permalink
fix: tezos-provider: ghostnet
Browse files Browse the repository at this point in the history
  • Loading branch information
dianasavvatina committed Nov 21, 2024
1 parent a43b2a4 commit b73baa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dapps/tezos-provider/src/utils/tezos-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export const TezosChainDataMainnet: ChainData = {
};

export const TezosChainDataTestnet: ChainData = {
name: "Tezos Testnet",
id: "tezos:testnet",
name: "Tezos Ghostnet",
id: "tezos:ghostnet",
rpc: ["https://rpc.ghostnet.teztnets.com"],
api: "https://api.ghostnet.tzkt.io/v1",
slip44: 1729,
Expand All @@ -102,7 +102,7 @@ export interface ChainsMap {
}
export const TezosChainMap: ChainsMap = {
"tezos:mainnet": TezosChainDataMainnet,
"tezos:testnet": TezosChainDataTestnet,
"tezos:ghostnet": TezosChainDataTestnet,
};

export interface AssetData {
Expand Down

0 comments on commit b73baa0

Please sign in to comment.