From 25ce40c8b96059c9543c50d2043dcbfe8196c8c9 Mon Sep 17 00:00:00 2001 From: kvhnuke <10602065+kvhnuke@users.noreply.github.com> Date: Tue, 1 Nov 2022 14:22:18 -0700 Subject: [PATCH] devop: update github raw links --- .../extension/src/libs/dapp-list/index.ts | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/packages/extension/src/libs/dapp-list/index.ts b/packages/extension/src/libs/dapp-list/index.ts index 0a6d5df3f..c45a3650e 100644 --- a/packages/extension/src/libs/dapp-list/index.ts +++ b/packages/extension/src/libs/dapp-list/index.ts @@ -2,43 +2,43 @@ import { NetworkNames } from "@enkryptcom/types"; const lists: Partial> = { [NetworkNames.Ethereum]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/eth.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/eth.json", [NetworkNames.Binance]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/bsc.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/bsc.json", [NetworkNames.Matic]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/matic.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/matic.json", [NetworkNames.EthereumClassic]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/etc.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/etc.json", [NetworkNames.Kusama]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/ksm.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/ksm.json", [NetworkNames.Polkadot]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/dot.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/dot.json", [NetworkNames.Acala]: "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/aca.json", [NetworkNames.Karura]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/kar.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/kar.json", [NetworkNames.Moonbeam]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/glmr.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/glmr.json", [NetworkNames.Moonriver]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/movr.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/movr.json", [NetworkNames.Astar]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/astr.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/astr.json", [NetworkNames.AstarEVM]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/astr.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/astr.json", [NetworkNames.Shiden]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/sdn.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/sdn.json", [NetworkNames.ShidenEVM]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/sdn.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/sdn.json", [NetworkNames.Okc]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/okc.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/okc.json", [NetworkNames.Optimism]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/op.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/op.json", [NetworkNames.Canto]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/canto.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/canto.json", [NetworkNames.Bifrost]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/bifrost.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/bifrost.json", [NetworkNames.BifrostKusama]: - "https://github.com/enkryptcom/dynamic-data/raw/main/dapps/bifrost.json", + "https://raw.githubusercontent.com/enkryptcom/dynamic-data/main/dapps/bifrost.json", }; export default lists;