From 101154d7f50616d97a3bffe2ad7e66e26dfa82b4 Mon Sep 17 00:00:00 2001 From: emmanuelm41 Date: Tue, 8 Oct 2024 10:01:09 -0300 Subject: [PATCH] chore: add a few comments --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 46b735e..eb458e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -52,10 +52,12 @@ export default class IronfishApp extends GenericApp { const params: ConstructorParams = { cla: dkgMode ? DKG_APP_CLA : REGULAR_APP_CLA, ins: { + // Common instructions GET_VERSION: 0x00, + // Regulars app instructions GET_KEYS: 0x01, SIGN: 0x02, - //DKG Instructions + // DKG app instructions DKG_IDENTITY: 0x10, DKG_ROUND_1: 0x11, DKG_ROUND_2: 0x12,