https://github.com/carteramesh/fireblocks-signer-transport
HTTP client for signing fireblocks transactions
https://github.com/carteramesh/fireblocks-signer-transport
blockchain fireblocks rust
Last synced: about 1 year ago
JSON representation
HTTP client for signing fireblocks transactions
- Host: GitHub
- URL: https://github.com/carteramesh/fireblocks-signer-transport
- Owner: CarteraMesh
- License: mit
- Created: 2025-07-13T17:44:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-14T06:56:32.000Z (about 1 year ago)
- Last Synced: 2025-07-14T09:42:21.614Z (about 1 year ago)
- Topics: blockchain, fireblocks, rust
- Language: Rust
- Homepage: https://cartera-mesh.com
- Size: 45.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# fireblocks-signer-transport
[](https://crates.io/crates/fireblocks-signer-transport)
[](https://docs.rs/fireblocks-signer-transport)
[](https://github.com/CarteraMesh/fireblocks-signer-transport/actions)
[](https://codecov.io/github/CarteraMesh/fireblocks-signer-transport)
## Installation
### Cargo
* Install the rust toolchain in order to have cargo installed by following
[this](https://www.rust-lang.org/tools/install) guide.
* run `cargo install fireblocks-signer-transport`
## Development
### Prerequisites
- **Rust Nightly**: Required for code formatting with advanced features
```bash
rustup install nightly
```
### Getting Started
1. **Clone the repository**
```bash
git clone https://github.com/CarteraMesh/fireblocks-signer-transport.git
cd fireblocks-signer-transport
```
2. **Set up environment**
```bash
# Copy and configure environment variables
cp env-sample .env
# Install Rust nightly for formatting
rustup install nightly
```
3. **Build and test**
```bash
# Build the project
cargo build
# Run tests (requires valid Fireblocks credentials in .env)
cargo test
# Format code (requires nightly)
cargo +nightly fmt --all
```
### Code Formatting
This project uses advanced Rust formatting features that require nightly:
```bash
# Format all code
cargo +nightly fmt --all
# Check formatting
cargo +nightly fmt --all -- --check
```
## License
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.
See [CONTRIBUTING.md](CONTRIBUTING.md).