@arcium-hq/client 0.9.0 → 0.9.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/build/index.cjs CHANGED
@@ -1884,7 +1884,7 @@ function createPacker(fields, typeName = 'Packer') {
1884
1884
  var address = "Arcj82pX7HxYKLR92qvgZUAd7vGS1k4hQvAFcPATFdEQ";
1885
1885
  var metadata = {
1886
1886
  name: "arcium",
1887
- version: "0.9.0",
1887
+ version: "0.9.1",
1888
1888
  spec: "0.1.0",
1889
1889
  description: "The Arcium program"
1890
1890
  };
@@ -4568,15 +4568,17 @@ var instructions = [
4568
4568
  name: "callback_transaction_index",
4569
4569
  type: "u8"
4570
4570
  },
4571
+ {
4572
+ name: "output_bytes",
4573
+ type: "bytes"
4574
+ },
4571
4575
  {
4572
4576
  name: "bls_sig",
4573
4577
  type: {
4574
- option: {
4575
- array: [
4576
- "u8",
4577
- 64
4578
- ]
4579
- }
4578
+ array: [
4579
+ "u8",
4580
+ 64
4581
+ ]
4580
4582
  }
4581
4583
  }
4582
4584
  ]
@@ -5420,6 +5422,15 @@ var instructions = [
5420
5422
  }
5421
5423
  }
5422
5424
  },
5425
+ {
5426
+ name: "bls_pop_sig",
5427
+ type: {
5428
+ array: [
5429
+ "u8",
5430
+ 64
5431
+ ]
5432
+ }
5433
+ },
5423
5434
  {
5424
5435
  name: "metadata",
5425
5436
  type: {
package/build/index.d.ts CHANGED
@@ -547,7 +547,7 @@ type Arcium = {
547
547
  "address": "Arcj82pX7HxYKLR92qvgZUAd7vGS1k4hQvAFcPATFdEQ";
548
548
  "metadata": {
549
549
  "name": "arcium";
550
- "version": "0.9.0";
550
+ "version": "0.9.1";
551
551
  "spec": "0.1.0";
552
552
  "description": "The Arcium program";
553
553
  };
@@ -3229,15 +3229,17 @@ type Arcium = {
3229
3229
  "name": "callbackTransactionIndex";
3230
3230
  "type": "u8";
3231
3231
  },
3232
+ {
3233
+ "name": "outputBytes";
3234
+ "type": "bytes";
3235
+ },
3232
3236
  {
3233
3237
  "name": "blsSig";
3234
3238
  "type": {
3235
- "option": {
3236
- "array": [
3237
- "u8",
3238
- 64
3239
- ];
3240
- };
3239
+ "array": [
3240
+ "u8",
3241
+ 64
3242
+ ];
3241
3243
  };
3242
3244
  }
3243
3245
  ];
@@ -4081,6 +4083,15 @@ type Arcium = {
4081
4083
  };
4082
4084
  };
4083
4085
  },
4086
+ {
4087
+ "name": "blsPopSig";
4088
+ "type": {
4089
+ "array": [
4090
+ "u8",
4091
+ 64
4092
+ ];
4093
+ };
4094
+ },
4084
4095
  {
4085
4096
  "name": "metadata";
4086
4097
  "type": {
package/build/index.mjs CHANGED
@@ -1865,7 +1865,7 @@ function createPacker(fields, typeName = 'Packer') {
1865
1865
  var address = "Arcj82pX7HxYKLR92qvgZUAd7vGS1k4hQvAFcPATFdEQ";
1866
1866
  var metadata = {
1867
1867
  name: "arcium",
1868
- version: "0.9.0",
1868
+ version: "0.9.1",
1869
1869
  spec: "0.1.0",
1870
1870
  description: "The Arcium program"
1871
1871
  };
@@ -4549,15 +4549,17 @@ var instructions = [
4549
4549
  name: "callback_transaction_index",
4550
4550
  type: "u8"
4551
4551
  },
4552
+ {
4553
+ name: "output_bytes",
4554
+ type: "bytes"
4555
+ },
4552
4556
  {
4553
4557
  name: "bls_sig",
4554
4558
  type: {
4555
- option: {
4556
- array: [
4557
- "u8",
4558
- 64
4559
- ]
4560
- }
4559
+ array: [
4560
+ "u8",
4561
+ 64
4562
+ ]
4561
4563
  }
4562
4564
  }
4563
4565
  ]
@@ -5401,6 +5403,15 @@ var instructions = [
5401
5403
  }
5402
5404
  }
5403
5405
  },
5406
+ {
5407
+ name: "bls_pop_sig",
5408
+ type: {
5409
+ array: [
5410
+ "u8",
5411
+ 64
5412
+ ]
5413
+ }
5414
+ },
5404
5415
  {
5405
5416
  name: "metadata",
5406
5417
  type: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcium-hq/client",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Client SDK for interacting with encrypted Solana programs",
5
5
  "author": "Arcium",
6
6
  "license": "GPL-3.0-only",