Skip to content

Commit

Permalink
fix(wallet): wallet connect managed to custodial
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 authored Nov 14, 2024
1 parent 17f0ad3 commit 037f3f6
Show file tree
Hide file tree
Showing 10 changed files with 1,135 additions and 283 deletions.
2 changes: 1 addition & 1 deletion apps/deploy-web/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/basic-features/typescript for more information.
11 changes: 6 additions & 5 deletions apps/deploy-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
"@akashnetwork/network-store": "*",
"@akashnetwork/ui": "*",
"@auth0/nextjs-auth0": "^3.5.0",
"@chain-registry/types": "^0.41.3",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmos-kit/core": "^2.15.0",
"@cosmos-kit/cosmos-extension-metamask": "0.10.0",
"@cosmos-kit/cosmostation-extension": "^2.12.2",
"@cosmos-kit/keplr": "^2.12.2",
"@cosmos-kit/leap": "^2.12.2",
"@cosmos-kit/react": "2.14.1",
"@cosmos-kit/keplr": "^2.14.1",
"@cosmos-kit/leap": "^2.14.1",
"@cosmos-kit/react": "^2.20.1",
"@emotion/cache": "^11.7.1",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.11.0",
Expand All @@ -56,7 +56,7 @@
"@textea/json-viewer": "^3.0.0",
"auth0": "^4.3.1",
"axios": "^1.7.2",
"chain-registry": "^1.20.0",
"chain-registry": "^1.69.31",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cosmjs-types": "^0.9.0",
Expand Down Expand Up @@ -115,6 +115,7 @@
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@chain-registry/types": "^0.50.12",
"@keplr-wallet/types": "^0.12.111",
"@next/bundle-analyzer": "^14.0.1",
"@octokit/openapi-types": "^22.2.0",
Expand Down
6 changes: 3 additions & 3 deletions apps/deploy-web/src/chains/akash-sandbox.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { AssetList } from "@chain-registry/types";
import { AssetList, Chain } from "@chain-registry/types";

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

export const akashSandbox = {
export const akashSandbox: Chain = {
...akash,
chain_id: "sandbox-01",
network_type: "sandbox",
network_type: "devnet",
chain_name: "akash-sandbox",
pretty_name: "Akash-Sandbox",
apis: {
Expand Down
4 changes: 2 additions & 2 deletions apps/deploy-web/src/chains/akash-testnet.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { AssetList } from "@chain-registry/types";
import { AssetList, Chain } from "@chain-registry/types";

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

export const akashTestnet = {
export const akashTestnet: Chain = {
...akash,
chain_id: "testnet-02",
network_type: "testnet",
Expand Down
Loading

0 comments on commit 037f3f6

Please sign in to comment.