Skip to content

Commit

Permalink
feat(observability): utilise new logger in provider-console
Browse files Browse the repository at this point in the history
ref #433
  • Loading branch information
forbesus committed Dec 11, 2024
1 parent df2af1b commit 05324a6
Show file tree
Hide file tree
Showing 19 changed files with 282 additions and 92 deletions.
3 changes: 2 additions & 1 deletion apps/provider-console/mvm.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"dependencies": {
"@akashnetwork/ui": "1.0.0"
"@akashnetwork/ui": "1.0.0",
"@akashnetwork/logging": "2.0.2"
},
"devDependencies": {
"@akashnetwork/dev-config": "1.0.0"
Expand Down
1 change: 1 addition & 0 deletions apps/provider-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
},
"dependencies": {
"@akashnetwork/ui": "*",
"@akashnetwork/logging": "*",
"@chain-registry/types": "^0.50.1",
"@cosmos-kit/cosmostation-extension": "^2.12.2",
"@cosmos-kit/keplr": "^2.12.2",
Expand Down
6 changes: 3 additions & 3 deletions apps/provider-console/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/provider-console/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 05324a6

Please sign in to comment.