![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@ckb-lumos/experiment-script-registry
Advanced tools
This package provides functions to simplify the transaction assembling process.
@ckb-lumos/experiment-tx-assembler
This 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
, block_hash
, block_number
of the cell.
Create an input cell:
const lock: Script = {
code_hash:
"0x9bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce8",
args: "0x159890a7cacb44a95bef0743064433d763de229c",
hash_type: "type",
};
const outPoint = {
tx_hash:
"0x942c23f72f0a2558a0029522b1dea2a7c64ba5196aed829ab6bfe4b6c3270958",
index: "0x0",
};
const cell = createCell({
lock: lock,
capacity: BI.from("10000000000"),
out_point: outPoint,
});
Create an output cell:
const lock: Script = {
code_hash:
"0x79f90bb5e892d80dd213439eeab551120eb417678824f282b4ffb5f21bad2e1e",
hash_type: "type",
args: "0x01a08bcc398854db4eaffd9c28b881c65f91e3a28b00",
};
const cell = createCell({ lock: lock, capacity: BI.from("10000000000") });
Create cell with minimal capacity:
const lock: Script = {
code_hash:
"0x79f90bb5e892d80dd213439eeab551120eb417678824f282b4ffb5f21bad2e1e",
hash_type: "type",
args: "0x01a08bcc398854db4eaffd9c28b881c65f91e3a28b00",
};
const cell = createCellWithMinimalCapacity({ lock: lock });
FAQs
This package provides functions to simplify the transaction assembling process.
The npm package @ckb-lumos/experiment-script-registry receives a total of 3 weekly downloads. As such, @ckb-lumos/experiment-script-registry popularity was classified as not popular.
We found that @ckb-lumos/experiment-script-registry 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.