Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump skip go widget #315

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion initia-registry
660 changes: 278 additions & 382 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.99.0",
"@skip-go/widget": "0.0.1-beta.4",
"@skip-go/widget": "0.0.1",
"@solana/spl-token": "^0.4.1",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-wallets": "^0.19.31",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/edge-config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
if (typeof window !== "undefined") {
throw new Error("edge-config.ts should only be imported on the server");
}
import { ExperimentalFeature } from "@skip-router/core";
import { ExperimentalFeature } from "@skip-go/core";
import { createClient } from "@vercel/edge-config";
import { z } from "zod";

Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/fee-assets/[chainID].ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FeeAsset } from "@skip-router/core";
import { FeeAsset } from "@skip-go/core";
import { PageConfig } from "next";
import { NextRequest } from "next/server";

Expand Down
2 changes: 1 addition & 1 deletion src/utils/chain.client.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// importing cosmjs deps does not work in edge runtime environments

import { GasPrice } from "@cosmjs/stargate";
import { FeeAsset } from "@skip-router/core";
import { FeeAsset } from "@skip-go/core";

import { CUSTOM_GAS_PRICE_CHAIN_IDS } from "@/config/gas";

Expand Down
Loading