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

Refactor Wallet SDK folders #13389

Merged
merged 1 commit into from
Aug 14, 2023
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
Refactor Wallet SDK folders
  • Loading branch information
Jordan-Mysten committed Aug 14, 2023
commit 24f215bf6b897395df37232d5ba693e90eb2535f
1 change: 0 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"@mysten/core",
"@mysten/ui",
"sui-wallet-adapter-demo",
"wallet-kit-site",
"sponsored-transactions"
]
}
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ CHANGELOG.md
apps/ @MystenLabs/fe-and-apps
sdk/ @MystenLabs/sdk-reviewers
sdk/kiosk @MystenLabs/kiosk-sdk-reviewers
sdk/wallet-adapter @MystenLabs/wallet-kit-reviewers
sdk/wallet-standard @MystenLabs/wallet-kit-reviewers
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ dist/
out/
playwright-report/
storybook-static/
sdk/wallet-adapter/site/pages/
CHANGELOG.md

2 changes: 1 addition & 1 deletion apps/explorer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"references": [
{ "path": "../../sdk/typescript/" },
{ "path": "../../sdk/kiosk/" },
{ "path": "../../sdk/wallet-adapter/wallet-kit/" }
{ "path": "../../sdk/wallet-kit/react/" }
]
}
2 changes: 1 addition & 1 deletion apps/wallet/configs/ts/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@mysten/kiosk": ["../../sdk/kiosk/src/index.ts"],
"@mysten/bcs": ["../../sdk/bcs/src/"],
"@mysten/ledgerjs-hw-app-sui": ["../../sdk/ledgerjs-hw-app-sui/src/Sui.ts"],
"@mysten/wallet-standard": ["../../sdk/wallet-adapter/wallet-standard/src/"]
"@mysten/wallet-standard": ["../../sdk/wallet-standard/src/"]
}
},
"include": ["../../src", "../../tests"],
Expand Down
2 changes: 1 addition & 1 deletion dapps/kiosk/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "../../sdk/typescript" },
{ "path": "../../sdk/wallet-adapter/wallet-kit" }
{ "path": "../../sdk/wallet-kit/react" }
]
}
2 changes: 1 addition & 1 deletion dapps/multisig-toolkit/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "../../sdk/typescript" },
{ "path": "../../sdk/wallet-adapter/wallet-kit" }
{ "path": "../../sdk/wallet-kit/react" }
]
}
2 changes: 1 addition & 1 deletion dapps/sponsored-transactions/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "../../sdk/typescript" },
{ "path": "../../sdk/wallet-adapter/wallet-kit" }
{ "path": "../../sdk/wallet-kit/react" }
]
}
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
"icons": "pnpm --filter ./apps/icons",
"explorer": "pnpm --filter ./apps/explorer",
"wallet": "pnpm --filter ./apps/wallet",
"wallet-adapter": "pnpm --filter ./sdk/wallet-adapter",
"wallet-kit-site": "pnpm --filter wallet-kit-site",
"sdk": "pnpm --filter ./sdk/typescript",
"bcs": "pnpm --filter ./sdk/bcs",
"kiosk": "pnpm --filter ./sdk/kiosk",
Expand Down
Loading