
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@ckb-lumos/experiment-tx-assembler
Advanced tools
This package provides functions to simplify the transaction assembling process.
@ckb-lumos/experiment-tx-assemblerThis package provides functions to simplify the transaction assembling process.
createScriptRegistry is for creating and managing script more easier.
import { createScriptRegistry } from "@ckb-lumos/experiment";
import { predefined } from "@ckb-lumos/config-manager";
const { AGGRON4 } = predefined;
const registry = createScriptRegistry(AGGRON4.SCRIPTS);
const secp256k1Script = registry.newScript("SECP256K1_BLAKE160", "0x");
const newRegistry = registry.extend({
OMNI_LOCK: {
CODE_HASH:
"0x79f90bb5e892d80dd213439eeab551120eb417678824f282b4ffb5f21bad2e1e",
HASH_TYPE: "type",
TX_HASH:
"0x9154df4f7336402114d04495175b37390ce86a4906d2d4001cf02c3e6d97f39c",
INDEX: "0x0",
DEP_TYPE: "code",
},
});
const omniCellDep = newRegistry.newCellDep("OMNI_LOCK");
To create input or output cells, you can use createCell or createCellWithMinimalCapacity, you can also indicate type, data, blockHash, blockNumber of the cell.
Create an input cell:
const lock: Script = {
codeHash:
"0x9bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce8",
args: "0x159890a7cacb44a95bef0743064433d763de229c",
hashType: "type",
};
const outPoint = {
txHash:
"0x942c23f72f0a2558a0029522b1dea2a7c64ba5196aed829ab6bfe4b6c3270958",
index: "0x0",
};
const cell = createCell({
lock: lock,
capacity: BI.from("10000000000"),
outPoint: outPoint,
});
Create an output cell:
const lock: Script = {
codeHash:
"0x79f90bb5e892d80dd213439eeab551120eb417678824f282b4ffb5f21bad2e1e",
hashType: "type",
args: "0x01a08bcc398854db4eaffd9c28b881c65f91e3a28b00",
};
const cell = createCell({ lock: lock, capacity: BI.from("10000000000") });
Create cell with minimal capacity:
const lock: Script = {
codeHash:
"0x79f90bb5e892d80dd213439eeab551120eb417678824f282b4ffb5f21bad2e1e",
hashType: "type",
args: "0x01a08bcc398854db4eaffd9c28b881c65f91e3a28b00",
};
const cell = createCellWithMinimalCapacity({ lock: lock });
FAQs
This package provides functions to simplify the transaction assembling process.
We found that @ckb-lumos/experiment-tx-assembler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.