Skip to content

Commit

Permalink
[wallet-adapter] merge wallet adapter (MystenLabs#3361)
Browse files Browse the repository at this point in the history
* [wallet-adapter] initial merge
  • Loading branch information
punwai authored Jul 27, 2022
1 parent 39541ca commit 763b80b
Show file tree
Hide file tree
Showing 60 changed files with 40,685 additions and 0 deletions.
23 changes: 23 additions & 0 deletions wallet-adapter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
17 changes: 17 additions & 0 deletions wallet-adapter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Sui Wallet Adapter

This project is an adapter for wallets on the Sui blockchain.

### Modules

#### packages/adapters/base-adapter
Defines the base interface in which the wallet adapters will implement.

#### packages/adapters/integrations
Contains the integrations for each wallet. If you are importing multiple wallets, it may be beneficial to instead import the `all-wallets` module, which exports all integrated wallet adapter interfaces.

#### packages/ui
Contains basic UI elements such as the Connect/Manage Wallet and corresponding modals for each wallet. Check out ./src for an example of how to integrate this to your project.

#### packages/react-providers
Contains the react providers that inject the endpoint defined in `packages/adapters/base-adapter` into your project. Check out ./src for an example of how to integrate this to your project.
1 change: 1 addition & 0 deletions wallet-adapter/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 763b80b

Please sign in to comment.