ozon-cli 0.1.6

Ozon CLI helps to manage and register operators and AVSs with the Ozon protocol.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
### Ozon-cli (PLEASE NOTE - We are currently in the development stage , So mainnet deployments are not live yet. please stick to our Devnet and have fun).



[![Crates.io](https://img.shields.io/crates/v/ozon-cli.svg)](https://crates.io/crates/ozon-cli)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)

Command-line interface for interacting with the Ozon restaking protocol on Solana. Manage operators and AVS (Actively Validated Services) registrations directly from your terminal.

## πŸš€ Features


- **Operator Management**: Register, update, and de-register operators with bond staking
- **AVS Management**: Register and manage Actively Validated Services
- **Multi-Cluster Support**: Works with Solana devnet, testnet, and mainnet
- **Flexible Wallet Options**: Use default or custom wallet configurations
- **Transaction Verification**: Get detailed transaction signatures for all operations

## πŸ“¦ Installation


### Install from crates.io (Recommended)


```bash
cargo install ozon-cli
```

### Install from Source(Repo is private as of now - use the above option)


```bash
git clone https://github.com/wildchain/ozon_contract.git
cd ozon_contract/ozon-cli
cargo install --path .
```

### Verify Installation


```bash
ozon-cli --version
ozon-cli --help
```

## πŸ”§ Prerequisites


Before using ozon-cli, ensure you have:

1. **Rust and Cargo** installed ([rustup]https://rustup.rs/)
2. **Solana CLI tools** installed ([Solana Docs]https://docs.solana.com/cli/install-solana-cli-tools)
3. **A Solana wallet** configured

### Setting Up Your Solana Wallet


```bash
# Create a new wallet (if you don't have one)

solana-keygen new --outfile ~/.config/solana/id.json

# Set cluster to devnet for testing

solana config set --url devnet

# Check your wallet address

solana address

# Get devnet SOL for testing (devnet only)

solana airdrop 2
```

## πŸ“– Usage


### Basic Command Structure


```bash
ozon-cli <COMMAND> [OPTIONS]
```

### Global Options


- `--cluster <CLUSTER>`: Specify Solana cluster (devnet, testnet, mainnet) [default: devnet]
- `--wallet <PATH>`: Path to wallet keypair file [default: ~/.config/solana/id.json]
- `--help`: Display help information
- `--version`: Display version information

---

## 🎯 Commands


### 1. Initialize Operator


Register a new operator with the Ozon protocol by staking a bond amount.

**Syntax:**
```bash
ozon-cli initialize-operator \
  --bond-amount <LAMPORTS> \
  --metadata <STRING> \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>]
```

**Parameters:**
- `--bond-amount`: Amount of SOL to bond in lamports (minimum: 2 SOL = 2,000,000,000 lamports)
- `--metadata`: Metadata describing your operator (e.g., "My Operator Node")
- `--cluster`: Network cluster (devnet, testnet, mainnet) [default: devnet]
- `--wallet`: Path to wallet file [default: ~/.config/solana/id.json]

**Example:**
```bash
# Register operator with 5 SOL bond on devnet

ozon-cli initialize-operator \

  --bond-amount 5000000000 \

  --metadata "Acme Validator Services" \

  --cluster devnet


# Register on mainnet with custom wallet

ozon-cli initialize-operator \

  --bond-amount 10000000000 \

  --metadata "Production Operator" \

  --cluster mainnet \

  --wallet /path/to/mainnet-wallet.json

```

**Output:**
```
πŸ” Debug info:
  Program ID: 6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B
  Operator key: 8xYz...AbCd
  Operator account PDA: 9pQw...XyZa
  Vault PDA: 7mNb...LmNo
  Bond amount: 5000000000
  Metadata: Acme Validator Services
βœ… Operator initialized with tx 3kL9...8fH2
```

---

### 2. De-register Operator


Remove your operator registration and reclaim your bonded SOL.

**Syntax:**
```bash
ozon-cli de-register-operator \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>]
```

**Parameters:**
- `--cluster`: Network cluster [default: devnet]
- `--wallet`: Path to wallet file [default: ~/.config/solana/id.json]

**Example:**
```bash
# De-register operator on devnet

ozon-cli de-register-operator --cluster devnet


# De-register on mainnet with custom wallet

ozon-cli de-register-operator \

  --cluster mainnet \

  --wallet /path/to/mainnet-wallet.json

```

**Output:**
```
πŸ” Debug info:
  Program ID: 6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B
  Operator key: 8xYz...AbCd
  Operator account PDA: 9pQw...XyZa
  Vault PDA: 7mNb...LmNo
βœ… Operator de-registered with tx 2jK8...9gI1
```

---

### 3. Register AVS


Register a new Actively Validated Service (AVS) with the protocol.

**Syntax:**
```bash
ozon-cli register-avs \
  --name <STRING> \
  --registration-fee <LAMPORTS> \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>]
```

**Parameters:**
- `--name`: Name/metadata for your AVS
- `--registration-fee`: Registration fee in lamports (minimum: 3 SOL = 3,000,000,000 lamports)
- `--cluster`: Network cluster [default: devnet]
- `--wallet`: Path to wallet file [default: ~/.config/solana/id.json]

**Example:**
```bash
# Register AVS on devnet

ozon-cli register-avs \

  --name "Oracle Price Feeds" \

  --registration-fee 3000000000 \

  --cluster devnet


# Register on mainnet

ozon-cli register-avs \

  --name "Cross-Chain Bridge Service" \

  --registration-fee 5000000000 \

  --cluster mainnet \

  --wallet /path/to/mainnet-wallet.json

```

**Output:**
```
πŸ” Debug info:
  Program ID: 6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B
  AVS owner: 8xYz...AbCd
  AVS account PDA: 4sWx...KlMn
  Treasury PDA: 6tRy...PqRs
  Registration fee: 3000000000
  Avs Name: Oracle Price Feeds
βœ… Avs registered with tx 5nM7...3pQ9
```

---

### 4. Update AVS Metadata


Update the metadata/name of your registered AVS.

**Syntax:**
```bash
ozon-cli update-avs-metadata \
  --name <STRING> \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>]
```

**Parameters:**
- `--name`: New name/metadata for your AVS
- `--cluster`: Network cluster [default: devnet]
- `--wallet`: Path to wallet file [default: ~/.config/solana/id.json]

**Example:**
```bash
# Update AVS metadata

ozon-cli update-avs-metadata \

  --name "Oracle Price Feeds v2.0" \

  --cluster devnet


# Update on mainnet

ozon-cli update-avs-metadata \

  --name "Enhanced Oracle Service" \

  --cluster mainnet \

  --wallet /path/to/mainnet-wallet.json

```

**Output:**
```
πŸ” Debug info:
  Program ID: 6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B
  AVS owner: 8xYz...AbCd
  AVS account PDA: 4sWx...KlMn
  New Avs Name: Oracle Price Feeds v2.0
βœ… AVS metadata updated with tx 7oL6...4rH8
```

---

### 5. De-register AVS


Remove your AVS registration from the protocol.

**Syntax:**
```bash
ozon-cli de-register-avs \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>]
```

**Parameters:**
- `--cluster`: Network cluster [default: devnet]
- `--wallet`: Path to wallet file [default: ~/.config/solana/id.json]

**Example:**
```bash
# De-register AVS on devnet

ozon-cli de-register-avs --cluster devnet


# De-register on mainnet(comming soon)

ozon-cli de-register-avs \

  --cluster mainnet \

  --wallet /path/to/mainnet-wallet.json

```

**Output:**
```
πŸ” Debug info:
  Program ID: 6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B
  AVS owner: 8xYz...AbCd
  AVS account PDA: 4sWx...KlMn
βœ… AVS de-registered with tx 9kP4...2sG7
```

---

### 6. Opt Into AVS (Operator Registration)

Allow an operator to opt into an Actively Validated Service to start providing services.
Syntax:
bashozon-cli opt-in-avs \
  --avs-owner <PUBKEY> \
  [--cluster <CLUSTER>] \
  [--wallet <PATH>] \
  [--interactive]
Parameters:

--avs-owner: The public key of the AVS owner you want to opt into
--cluster: Network cluster [default: devnet]
--wallet: Path to wallet file [default: ~/.config/solana/id.json]
--interactive: Launch the Ozon AVS Selection dashboard in your browser [optional]

Example:
bash# Opt into an AVS using the AVS owner's public key
ozon-cli opt-in-avs \
  --avs-owner 8xYzAbCdEfGh1234567890qwertyuiopasdfghjklzxc \
  --cluster devnet

# Use interactive mode to browse and select AVS from the dashboard

ozon-cli opt-in-avs --interactive

# Opt in on mainnet with custom wallet

ozon-cli opt-in-avs \
  --avs-owner 8xYzAbCdEfGh1234567890qwertyuiopasdfghjklzxc \
  --cluster mainnet \
  --wallet /path/to/mainnet-wallet.json
Output:
πŸ” Debug info:
  Operator: CLuH...btHN
  AVS Owner: 8xYz...zxc
  AVS Account: 4sWx...KlMn
  Registration PDA: 9pQw...XyZa
βœ… Opted into AVS with tx 7mN8...5kL2

**Interactive Mode:**
When using --interactive, the command will open the Ozon AVS Selection dashboard in your default browser, where you can:

Browse available AVS services
View AVS metadata and requirements
Select an AVS to opt into
Complete the opt-in process through a user-friendly interface

## πŸ’‘ Common Workflows


### Setting Up as an Operator


```bash
# 1. Check your balance

solana balance

# 2. Request airdrop if on devnet

solana airdrop 10

# 3. Register as operator

ozon-cli initialize-operator \
  --bond-amount 2000000000 \
  --metadata "My Operator Node" \
  --cluster devnet

# 4. Browse available AVS services interactively

ozon-cli opt-in-avs --interactive

# 5. Or opt into a specific AVS directly

ozon-cli opt-in-avs \
  --avs-owner 8xYzAbCdEfGh1234567890qwertyuiopasdfghjklzxc \
  --cluster devnet

# 6. Verify transaction on explorer

# Visit: https://explorer.solana.com/tx/<SIGNATURE>?cluster=devnet

```

### Setting Up an AVS


```bash
# 1. Ensure you have enough SOL

solana balance

# 2. Register your AVS

ozon-cli register-avs \
  --name "My Validation Service" \
  --registration-fee 3000000000 \
  --cluster devnet

# 3. Update name later if needed

ozon-cli update-avs-metadata \
  --name "My Validation Service v2" \
  --cluster devnet

# 5. Share your AVS owner pubkey with operators

solana address
```
## πŸ” Finding AVS to Opt Into


There are two methods to find and opt into an AVS:

### Method 1: Interactive Dashboard (Recommended)


The easiest way to discover and opt into AVS services is through the interactive web dashboard:
```bash
# Launch the Ozon AVS Selection dashboard in your browser

ozon-cli opt-in-avs --interactive
```

**What you'll see:**
- Browse all registered AVS services
- View detailed service descriptions
- Check AVS requirements and status
- Select and opt-in with one click
- Visual interface for easier navigation

**Dashboard URL**: https://ozon-operator-avs-registy.netlify.app/

---

### Method 2: Get AVS Owner Pubkey Directly


If you already know which AVS you want to join, you can opt in directly using the AVS owner's public key:

**Ways to obtain the AVS owner pubkey:**

1. **Ask the AVS provider directly**
   - Contact the AVS team through their official channels
   - They will provide their wallet public key

2. **Check the AVS registry on Solana Explorer**
   - Visit: https://explorer.solana.com/?cluster=devnet
   - Search for AVS account addresses
   - Verify the owner field

3. **Use the AVS provider's documentation**
   - Check their official website or GitHub
   - Look for integration guides
   - Find published wallet addresses

**Example:**
```bash
# Once you have the AVS owner pubkey, opt in directly

ozon-cli opt-in-avs \
  --avs-owner 8xYzAbCdEfGh1234567890qwertyuiopasdfghjklzxc \
  --cluster devnet
```

---

## πŸ‘₯ Managing Multiple Operators/AVS


You can run multiple operators and have them opt into different AVS services using separate wallets.

### Setting Up Multiple Operators

```bash
# Create and fund separate wallets for each operator

solana-keygen new --outfile ~/operator1-wallet.json
solana-keygen new --outfile ~/operator2-wallet.json

# Fund each wallet (on devnet)

solana airdrop 10 ~/operator1-wallet.json --url devnet
solana airdrop 10 ~/operator2-wallet.json --url devnet

# Register first operator

ozon-cli initialize-operator \
  --bond-amount 5000000000 \
  --metadata "Operator Node 1 - Oracle Services" \
  --cluster devnet \
  --wallet ~/operator1-wallet.json

# Register second operator

ozon-cli initialize-operator \
  --bond-amount 5000000000 \
  --metadata "Operator Node 2 - Bridge Services" \
  --cluster devnet \
  --wallet ~/operator2-wallet.json
```

### Opting Multiple Operators into Different AVS

```bash
# Operator 1 opts into Oracle AVS

ozon-cli opt-in-avs \
  --avs-owner 8xYzAbCdEfGh1234567890qwertyuiopasdfghjklzxc \
  --cluster devnet \
  --wallet ~/operator1-wallet.json

# Operator 2 opts into Bridge AVS

ozon-cli opt-in-avs \
  --avs-owner 9aWxBcDeFgHi2345678901zxcvbnmasdfghjklqwert \
  --cluster devnet \
  --wallet ~/operator2-wallet.json

# One operator can also opt into multiple AVS

ozon-cli opt-in-avs \
  --avs-owner <ANOTHER_AVS_OWNER_PUBKEY> \
  --cluster devnet \
  --wallet ~/operator1-wallet.json
```

### Organizing Your Wallets


**Best practices:**
- Use descriptive names for wallet files: `oracle-operator.json`, `bridge-operator.json`
- Keep a spreadsheet tracking which operator is in which AVS
- Store mainnet wallets separately and securely
- Test all configurations on devnet first

**Example directory structure:**
```
~/solana-wallets/
β”œβ”€β”€ devnet/
β”‚   β”œβ”€β”€ operator-1-oracle.json
β”‚   β”œβ”€β”€ operator-2-bridge.json
β”‚   └── operator-3-backup.json
└── mainnet/
    β”œβ”€β”€ production-operator-1.json
    └── production-operator-2.json
```

---

## πŸ“‹ Command Quick Reference


| Command | Purpose | Minimum Requirement |
|---------|---------|---------------------|
| `initialize-operator` | Register as an operator | 2 SOL bond |
| `de-register-operator` | Unregister operator | Must be registered |
| `register-avs` | Register an AVS | 3 SOL registration fee |
| `update-avs-metadata` | Update AVS information | Must own AVS |
| `de-register-avs` | Unregister AVS | Must own AVS |
| `opt-in-avs` | Operator joins an AVS | Must be registered operator |
| `initialize-reward-treasury` | Setup reward system | Protocol authority only |

---

## πŸ”„ State Transitions


### Operator Lifecycle

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Start  β”‚
β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Initialize Operator β”‚ ◄── Bond 2+ SOL
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
           β”‚
           β–Ό
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚Active Operatorβ”‚
     β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜
            β”‚
            β–Ό
      β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
      β”‚Opt Into AVS β”‚ ◄── Join one or more services
      β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
             β”‚
             β–Ό
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚Providing Servicesβ”‚
     β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜
              β”‚
              β–Ό
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚ De-register Operator β”‚ ◄── Reclaim bond
    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
               β”‚
               β–Ό
           β”Œβ”€β”€β”€β”€β”€β”
           β”‚ End β”‚
           β””β”€β”€β”€β”€β”€β”˜
```

### AVS Lifecycle

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Start  β”‚
β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚Initialize Treasury  β”‚ ◄── Protocol setup (once)
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
           β”‚
           β–Ό
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚Register AVS β”‚ ◄── Pay 3+ SOL fee
     β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
            β”‚
            β–Ό
       β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
       β”‚Active AVSβ”‚
       β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜
            β”‚
            β–Ό
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚Update Metadataβ”‚ ◄── Optional updates
     β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜
            β”‚
            β–Ό
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚Accept Operatorsβ”‚ ◄── Operators opt in
     β””β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜
             β”‚
             β–Ό
      β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
      β”‚De-register AVSβ”‚ ◄── Close service
      β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜
             β”‚
             β–Ό
         β”Œβ”€β”€β”€β”€β”€β”
         β”‚ End β”‚
         β””β”€β”€β”€β”€β”€β”˜
```

---

## πŸ’Ό Real-World Scenarios


### Scenario 1: Single Operator, Multiple AVS


**Use case:** You run one operator node that provides multiple services.
```bash
# 1. Initialize your operator once

ozon-cli initialize-operator \
  --bond-amount 5000000000 \
  --metadata "Multi-Service Operator Node" \
  --cluster devnet

# 2. Opt into multiple AVS services

ozon-cli opt-in-avs --avs-owner <ORACLE_AVS_OWNER>
ozon-cli opt-in-avs --avs-owner <BRIDGE_AVS_OWNER>
ozon-cli opt-in-avs --avs-owner <DATA_AVS_OWNER>
```

### Scenario 2: Multiple Operators, Specialized Services


**Use case:** You run separate operators for different service types.
```bash
# Oracle-specialized operator

ozon-cli initialize-operator \
  --bond-amount 10000000000 \
  --metadata "Oracle Specialist Node" \
  --wallet ~/oracle-operator.json

ozon-cli opt-in-avs \
  --avs-owner <ORACLE_AVS_OWNER> \
  --wallet ~/oracle-operator.json

# Bridge-specialized operator

ozon-cli initialize-operator \
  --bond-amount 10000000000 \
  --metadata "Bridge Specialist Node" \
  --wallet ~/bridge-operator.json

ozon-cli opt-in-avs \
  --avs-owner <BRIDGE_AVS_OWNER> \
  --wallet ~/bridge-operator.json
```

### Scenario 3: Testing Before Production


**Use case:** Test your setup on devnet before going live on mainnet.
```bash
# Test on devnet first

ozon-cli initialize-operator \
  --bond-amount 2000000000 \
  --metadata "Test Operator" \
  --cluster devnet \
  --wallet ~/test-wallet.json

# Once confident, deploy to mainnet

ozon-cli initialize-operator \
  --bond-amount 20000000000 \
  --metadata "Production Operator" \
  --cluster mainnet \
  --wallet ~/prod-wallet.json
```

### Switching Between Clusters


```bash
# Development/Testing on devnet

ozon-cli initialize-operator \
  --bond-amount 2000000000 \
  --metadata "Test Operator" \
  --cluster devnet

# Production on mainnet

ozon-cli initialize-operator \
  --bond-amount 10000000000 \
  --metadata "Production Operator" \
  --cluster mainnet \
  --wallet /secure/mainnet-wallet.json
```

---

## πŸ” Security Best Practices


1. **Protect Your Wallet**: Never share your private key file
2. **Test on Devnet First**: Always test operations on devnet before mainnet
3. **Use Hardware Wallets**: Consider using Ledger for mainnet operations
4. **Backup Your Keys**: Store wallet backups in secure locations
5. **Verify Transactions**: Always check transaction signatures on Solana Explorer

---

## πŸ› Troubleshooting


### Issue: "Command not found"


```bash
# Ensure cargo bin is in your PATH

export PATH="$HOME/.cargo/bin:$PATH"

# Add to your shell profile (~/.bashrc, ~/.zshrc)

echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.zshrc
```

### Issue: "Insufficient funds"


```bash
# Check your balance

solana balance

# On devnet, request airdrop

solana airdrop 5

# On mainnet, ensure you have enough SOL

```


### Issue: "Invalid cluster"


Supported clusters are:
- `devnet` (default)
- `testnet`
- `mainnet` or `mainnet-beta` (`coming soon`)

### Issue: "Unauthorized action"


Ensure you're using the correct wallet that owns the operator/AVS you're trying to modify.


---

## πŸ“Š Transaction Verification


After each command, you'll receive a transaction signature. Verify it on Solana Explorer:

**Devnet:**
```
https://explorer.solana.com/tx/<SIGNATURE>?cluster=devnet
```

**Mainnet:**
```
https://explorer.solana.com/tx/<SIGNATURE>
```

---

## πŸ”— Program Information


- **Program ID**: `6UqcKJ3U7zfr5JkhzjDZQsunbJeFBxgCKYbuMw8Scv6B`
- **Network**: Solana (devnet, testnet, mainnet)
- **Repository**: [`we will share this once we make our repo public`]

---

## πŸ“š Resources


- [Solana Documentation]https://docs.solana.com/
- [Solana CLI Tools]https://docs.solana.com/cli
- [Solana Explorer]https://explorer.solana.com/


## πŸ“„ License


This project is licensed under the Apache-2.0 License - see the [LICENSE](LICENSE) file for details.

---

## πŸ’¬ Support


- **Issues**: [GitHub Issues]https://github.com/wildchain/ozon_contract/issues
- **Discussions**: [GitHub Discussions]https://github.com/wildchain/ozon_contract/discussions

---

## πŸŽ‰ Acknowledgments


Built with:
- [Anchor Framework]https://www.anchor-lang.com/
- [Solana]https://solana.com/
- [Rust]https://www.rust-lang.org/

---

**Made with ❀️ by the Ozon Team**