Skip to content

Commit

Permalink
wip - wallet connect init
Browse files Browse the repository at this point in the history
  • Loading branch information
jigar-arc10 committed Jul 12, 2024
1 parent 8afb22d commit 40ee1a3
Show file tree
Hide file tree
Showing 15 changed files with 985 additions and 177 deletions.
5 changes: 5 additions & 0 deletions apps/provider-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@
},
"dependencies": {
"@akashnetwork/ui": "*",
"@cosmos-kit/cosmostation-extension": "^2.12.2",
"@cosmos-kit/keplr": "^2.12.2",
"@cosmos-kit/leap-extension": "^2.12.2",
"@cosmos-kit/react": "^2.18.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"jotai": "^2.9.0",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"react": "^18",
Expand Down
17 changes: 17 additions & 0 deletions apps/provider-console/src/chains/akash-sandbox.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { AssetList } from "@chain-registry/types";

import { akash, akashAssetList } from "./akash";

export const akashSandbox = {
...akash,
chain_id: "sandbox-01",
network_type: "sandbox",
chain_name: "akash-sandbox",
pretty_name: "Akash-Sandbox",
apis: {
rpc: [{ address: "https://rpc.sandbox-01.aksh.pw", provider: "ovrclk" }],
rest: [{ address: "https://api.sandbox-01.aksh.pw", provider: "ovrclk" }]
}
};

export const akashSandboxAssetList: AssetList = { ...akashAssetList, chain_name: "akash-sandbox", assets: [...akashAssetList.assets] };
17 changes: 17 additions & 0 deletions apps/provider-console/src/chains/akash-testnet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { AssetList } from "@chain-registry/types";

import { akash, akashAssetList } from "./akash";

export const akashTestnet = {
...akash,
chain_id: "testnet-02",
network_type: "testnet",
chain_name: "akash-testnet",
pretty_name: "Akash-Testnet",
apis: {
rpc: [{ address: "https://rpc.testnet-02.aksh.pw", provider: "ovrclk" }],
rest: [{ address: "https://api.testnet-02.aksh.pw", provider: "ovrclk" }]
}
};

export const akashTestnetAssetList: AssetList = { ...akashAssetList, chain_name: "akash-testnet", assets: [...akashAssetList.assets] };
Loading

0 comments on commit 40ee1a3

Please sign in to comment.