Skip to content

Commit

Permalink
fix: resolve data type mismatch and bump version (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
npnam93 authored Nov 1, 2024
1 parent 9d2fdb5 commit 32a8183
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions global.d.ts → packages/connect/src/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ExternalProvider } from '@ethersproject/providers';
import { IEIP1193Provider } from '@sky-mavis/tanto-connect';

declare global {
interface Window {
ronin?: {
provider: IEIP1193Provider;
provider: ExternalProvider;
};
ethereum?: ExternalProvider;
isWalletApp?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
"homepage": "https://github.com/skymavis/tanto-kit",
"dependencies": {
"@sky-mavis/tanto-connect": "0.0.7"
"@sky-mavis/tanto-connect": "0.0.8"
},
"peerDependencies": {
"@wagmi/core": "^2.x",
Expand Down
3 changes: 1 addition & 2 deletions packages/wagmi/src/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ExternalProvider } from '@ethersproject/providers';
import { IEIP1193Provider } from '@sky-mavis/tanto-connect';

declare global {
interface Window {
ronin?: {
provider: IEIP1193Provider;
provider: ExternalProvider;
};
ethereum?: ExternalProvider;
isWalletApp?: boolean;
Expand Down

0 comments on commit 32a8183

Please sign in to comment.