genlayer 0.36.0 → 0.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -207,6 +207,36 @@ EXAMPLES:
207
207
  ##### Schema
208
208
  - `schema` - Retrieves the contract schema
209
209
 
210
+ #### Transaction Operations
211
+
212
+ ```bash
213
+ USAGE:
214
+ genlayer receipt <txId> Get transaction receipt
215
+ genlayer appeal <txId> Appeal a transaction
216
+ genlayer appeal-bond <txId> Show minimum appeal bond required
217
+
218
+ OPTIONS (receipt):
219
+ --status <status> Status to wait for (default: FINALIZED)
220
+ --retries <retries> Number of retries (default: 100)
221
+ --interval <interval> Interval between retries in ms (default: 5000)
222
+ --stdout Print only stdout from the receipt
223
+ --stderr Print only stderr from the receipt
224
+
225
+ OPTIONS (appeal):
226
+ --bond <amount> Appeal bond amount (e.g. 500gen, 0.5gen). Auto-calculated if omitted
227
+ --rpc <rpcUrl> RPC URL override
228
+
229
+ EXAMPLES:
230
+ # Check the minimum bond required to appeal
231
+ genlayer appeal-bond 0x1234...
232
+
233
+ # Appeal with auto-calculated bond
234
+ genlayer appeal 0x1234...
235
+
236
+ # Appeal with explicit bond
237
+ genlayer appeal 0x1234... --bond 500gen
238
+ ```
239
+
210
240
  #### Account Management
211
241
 
212
242
  View and manage your account.
package/dist/index.js CHANGED
@@ -20078,7 +20078,7 @@ var require_cli_table3 = __commonJS({
20078
20078
  import { program } from "commander";
20079
20079
 
20080
20080
  // package.json
20081
- var version = "0.36.0";
20081
+ var version = "0.36.1";
20082
20082
  var package_default = {
20083
20083
  name: "genlayer",
20084
20084
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genlayer",
3
- "version": "0.36.0",
3
+ "version": "0.36.1",
4
4
  "description": "GenLayer Command Line Tool",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",