v0.1.0-beta.10
Companion to @utexo/rgb-lightning-node-nodejs@v0.1.0-beta.6.
What's new vs beta.9
The rln_sdk_node_vss_clear_fence C-FFI symbol shipped in beta.9 was missing JS-side wrapping. beta.10 exposes it as a callable method:
const SdkNode = require('@utexo/rgb-lightning-node-bare').SdkNode
const node = SdkNode.create(initRequest)
// ... after unlock failure due to stale VSS fence ...
node.vssClearFence({ password: '...' })The static .a files are identical to beta.9 (same rln-c-ffi build); only binding.cc + index.js changed to add the JS-callable surface. So the prebuilds (.bare files) are fresh in this release, but the underlying C-FFI is unchanged.