https://github.com/gregnazario/aptos-wallet-tester
A small dapp for testing integration with multiple wallets in the Aptos Ecosystem
https://github.com/gregnazario/aptos-wallet-tester
aptos aptos-wallet aptos-wallet-adapter wallet
Last synced: about 2 months ago
JSON representation
A small dapp for testing integration with multiple wallets in the Aptos Ecosystem
- Host: GitHub
- URL: https://github.com/gregnazario/aptos-wallet-tester
- Owner: gregnazario
- License: mit
- Created: 2023-07-14T20:50:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T23:45:50.000Z (about 1 year ago)
- Last Synced: 2025-01-28T22:31:34.552Z (4 months ago)
- Topics: aptos, aptos-wallet, aptos-wallet-adapter, wallet
- Language: TypeScript
- Homepage: https://wallet-tester.gnazar.io
- Size: 2.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Running locally
Checkout the wallet tester
```
git clone https://github.com/gregnazario/aptos-wallet-tester.git
```### Starting the server
Navigate to the webserver `client` folder
```
cd client
```Now install dependencies
```
npm install
```And then run the server, it will run on localhost:3000
```
npm start
```You will likely need to use testnet, as devnet is not often uploaded with
the move contract from the `move` folder.### Deploying the contract
If you're changing the contract code, you'll need to update it.Change into the move folder
```
cd move
```Publish the contract to devnet or testnet
```
export NETWORK="devnet"
export PROFILE="profile-name"aptos init --profile $PROFILE --network $NETWORK
aptos move publish --named-addresses deploy_account=$PROFILE --profile $PROFILE
```Then you will need to update the constants in the `client` folder for the address to match