Skip to content
Open
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
5 changes: 0 additions & 5 deletions .gitbook.yaml

This file was deleted.

34 changes: 23 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
*.gem
.bundle
.sass-cache
_site
Gemfile.lock
node_modules
.idea
.vscode/
*~
_book/
*.swp
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

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

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# IDE
.idea
.vscode
53 changes: 42 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,45 @@
# Trust Developer Documentation
# Trust Wallet Developer Documentation

Welcome to the Trust Wallet developer documentation. Here you can find documentation on contributing to Trust Wallet as well as on using Trust Wallet libraries on your own projects.
This repository contains the official developer documentation for Trust Wallet.

- [Developing for Trust Wallet platform](develop-for-trust/develop-for-trust.md)
- [Browser Extension](develop-for-trust/browser-extension/browser-extension.md)
- [Mobile (WalletConnect)](develop-for-trust/mobile/mobile.md)
- [Deep Linking](develop-for-trust/deeplinking/deeplinking.md)
- [Listing new dApps](dapps/listing-guide.md)
- [Listing new assets](assets/new-asset.md)
- [Wallet Core](wallet-core/wallet-core.md)
- [Barz - Smart Wallet](barz-smart-wallet/barz-smart-wallet.md)
## Installation

Want to discuss more? join our [Trust Wallet Developers](https://discord.gg/trustwallet) on Discord.
```bash
npm install
```

## Local Development

```bash
npm start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

## Build

```bash
npm run build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

## Deployment

```bash
npm run deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

## Contributing

We welcome contributions to improve the documentation! Please feel free to submit issues or pull requests.

## Community

Join our [Trust Wallet Developers](https://discord.gg/trustwallet) on Discord.

## License

See the [LICENSE](LICENSE) file for license rights and limitations (MIT).
42 changes: 0 additions & 42 deletions SUMMARY.md

This file was deleted.

5 changes: 0 additions & 5 deletions develop-for-trust/browser-extension/browser-extension.md

This file was deleted.

Loading