Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fortesenselabs/blockapiwallet
Open-source, Golang-based blockchain wallet service with secure, scalable, API-driven asset management. Docker containerized for easy integration.
https://github.com/fortesenselabs/blockapiwallet
Last synced: 5 days ago
JSON representation
Open-source, Golang-based blockchain wallet service with secure, scalable, API-driven asset management. Docker containerized for easy integration.
- Host: GitHub
- URL: https://github.com/fortesenselabs/blockapiwallet
- Owner: FortesenseLabs
- License: mit
- Created: 2024-06-29T08:59:10.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T09:47:09.000Z (7 months ago)
- Last Synced: 2024-06-30T12:55:50.304Z (6 months ago)
- Language: Go
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# BlockAPIWallet
BlockAPIWallet is an open-source, enterprise-grade blockchain wallet-as-a-service solution. It offers a secure, scalable, and API-driven platform for managing digital assets across multiple blockchains. Developed in Golang and based on trust-wallet wallet-core, BlockAPIWallet provides robust features and seamless integration with various blockchain networks.
## Features
- **Enterprise-Grade Security**: Utilizes MPC (Multi-Party Computation) technology for secure key management.
- **API-Driven**: Comprehensive APIs for creating and managing accounts, addresses, and transactions.
- **Multi-Blockchain Support**: Compatible with multiple blockchains including Bitcoin, Ethereum, Tron, Binance Smart Chain, Polygon, Solana, and more.
- **Docker Containerized**: Easily deployable in a Docker container for seamless integration with your infrastructure.
- **Customizable Policies**: Configure withdrawal, approval, and collection policies to meet your organization's needs.
- **Smart Contract Interaction**: Generate and deploy gasless smart contract addresses on supported chains.## Getting Started
### Prerequisites
- Docker
- Golang (1.16+)
- Make sure you have your preferred blockchain node(s) set up and accessible.### Installation
1. **Clone the repository:**
```sh
git clone https://github.com/yourusername/BlockAPIWallet.git
cd BlockAPIWallet
```2. **Build and run the Docker container:**
```sh
docker build -t blockapiwallet .
docker run -d -p 8080:8080 blockapiwallet
```3. **Configure environment variables:**
Create a `.env` file in the root directory with your configuration settings:
```env
PUBLIC_KEY=your_public_key
SECRET_KEY=your_secret_key
NODE_URL=your_blockchain_node_url
```### Usage
- **Authentication:**
Use the public and secret keys to authenticate API requests. Concatenate them in the format `{public_key:secret_key}`, encode in base64, and include in the Authorization header.
- **API Endpoints:**
- **Create Account:**
```http
POST /api/v1/accounts
```- **Generate Address:**
```http
POST /api/v1/addresses
```- **Transfer Funds:**
```http
POST /api/v1/transactions
```Refer to the [API Documentation](docs/API.md) for a complete list of endpoints and usage instructions.
## Configuration
- **Supported Blockchains:**
BlockAPIWallet supports multiple blockchains, with more being added continuously. Check the configuration file for the list of currently supported blockchains.- **Policies:**
Customize your policies for withdrawals, approvals, and collections by modifying the `config/policies.json` file.
## Contributing
We welcome contributions from the community. Please read our [Contributing Guidelines](CONTRIBUTING.md) before submitting a pull request.
## License
BlockAPIWallet is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
## Contact
For questions, issues, or feature requests, please open an issue on GitHub or contact us at [email protected].
---
**BlockAPIWallet** - Secure, Scalable, and API-Driven Blockchain Wallet Solution.