@btc-vision/btc-runtime 1.0.14 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@btc-vision/btc-runtime",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Bitcoin Smart Contract Runtime",
5
5
  "main": "btc/index.ts",
6
6
  "types": "btc/index.ts",
@@ -1,6 +1,6 @@
1
1
  import { BytesWriter } from '../buffer/BytesWriter';
2
2
 
3
- export const MAX_EVENT_DATA_SIZE: u32 = 256; // 256 bytes max per event.
3
+ export const MAX_EVENT_DATA_SIZE: u32 = 352; // 352 bytes max per event.
4
4
  export const MAX_EVENTS: u8 = 8; // 8 events max per transactions.
5
5
 
6
6
  export abstract class NetEvent {