Compare commits

...

3 Commits

Author SHA1 Message Date
tequ
5cc6bfb5e6 Update history 2026-07-10 21:45:03 +09:00
tequ
d726dc86c3 Add missing HookCanEmit field to HookDefinition 2026-07-10 21:43:36 +09:00
tequ
6edc5a4a83 4.1.1 (#72) 2026-07-03 15:54:12 +09:00
4 changed files with 12 additions and 2 deletions

2
package-lock.json generated
View File

@@ -16048,7 +16048,7 @@
}
},
"packages/xahau": {
"version": "4.1.0",
"version": "4.1.1",
"license": "ISC",
"dependencies": {
"@scure/bip32": "^1.3.1",

View File

@@ -2,6 +2,11 @@
## Unreleased Changes
### Fixed
* Add missing HookCanEmit field to HookDefinition
### 4.1.1 (2026-07-03)
### Fixed
* Fix HookName validation on HookName deletion

View File

@@ -1,6 +1,6 @@
{
"name": "xahau",
"version": "4.1.0",
"version": "4.1.1",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the Xahau Network in Node.js and the browser",
"files": [

View File

@@ -37,6 +37,11 @@ export default interface HookDefintion
*/
HookOnOutgoing?: string
/**
* The transactions that can emit from the hook. Represented as a 256Hash
*/
HookCanEmit?: string
/**
* The namespace of the hook.
*/