Skip to content
Merged
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
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,32 @@ Agent-first CLI for Fireblocks infrastructure. Execute any Fireblocks API operat

## Installation

### Homebrew (macOS)

```bash
brew tap fireblocks/fireblocks-cli
brew install fireblocks-cli
```

### npm (macOS / Linux / Windows)

```bash
npm install -g @fireblocks/cli
```

### Standalone installers

Download the latest release for your platform from the [GitHub Releases](https://github.com/fireblocks/fireblocks-cli/releases) page:

| Platform | File |
|----------|------|
| macOS ARM64 (Apple Silicon) | `fireblocks-cli-*-darwin-arm64.pkg` |
| macOS x64 (Intel) | `fireblocks-cli-*-darwin-x64.pkg` |
| Windows x64 | `fireblocks-cli-*-x64.exe` |
| Linux (tarball) | `fireblocks-cli-*-linux-x64.tar.gz` |

No Node.js required for standalone installers.

## Quick Start

```bash
Expand Down
1 change: 1 addition & 0 deletions jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('jest').Config} */
const config = {
testEnvironment: 'node',
forceExit: true,
testMatch: ['**/src/**/*.test.ts', '**/test/**/*.test.ts'],
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
Expand Down
Loading