
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@secux/app-dgb
Advanced tools
@secux/app-dgb
SecuX Hardware Wallet DGB API
import { SecuxDGB } from "@secux/app-dgb";
First, create instance of ITransport.
Get address by BIP32 path.
const path = "m/84'/20'/0'/0/0";
const address = await deivce.getAddress(path);
/*
// transfer data to hardware wallet by custom transport layer.
const data = SecuxDGB.prepareAddress(path);
const response = await device.Exchange(data);
const address = SecuxDGB.resolveAddress(response, path);
*/
const address = await deivce.getAddress("m/49'/20'/0'/0/0");
const address = await deivce.getAddress("m/44'/20'/0'/0/0");
Sign transaction (native segwit has not supported yet).
const inputs = [
{
hash: "4632c6b99925ebae5b806f5956d2d730415fe0c8c7edbfa2edea22e99a8f9f56",
vout: 0,
satoshis: 100000000,
path: "m/44'/20'/0'/0/0",
// for custom transport layer, each utxo need publickey.
// publickey: "02d07f1bcfdc3f25b23236bf46477527b26bd383fc6c03d7050105e16325c0b401"
},
{
hash: "18638cd984ab631ad7dafc5a701bec3ffa9b26bed5855eee4598d53a2ecad870",
vout: 0,
satoshis: 50000000,
path: "m/49'/20'/0'/0/0",
// for custom transport layer, each utxo need publickey.
// publickey: "03c117cf3c09cd66bd826082ecf4fb2e322b8d97ec4bfbdc380415ca9fe0c554bc"
}
];
const to = {
address: "D7TwNix9ziu8k16gAcqkyKWvXhXg7tkdAC",
satoshis: 70000000
};
const utxo = {
path: `m/44'/20'/0'/0/11`,
satoshis: 77777777,
// for custom transport layer, each utxo need publickey.
// publickey: "03efc5266e1979ada343a2271c83d1f0e9c19682bb9ddaabe10f028021781a7c01"
}
const { raw_tx } = await device.sign(inputs, { to, utxo });
/*
// transfer data to hardware wallet by custom transport layer.
const { commandData, rawTx } = SecuxDGB.prepareSign(inputs, { to, utxo });
const response = await device.Exchange(commandData);
const signed = SecuxDGB.resloveTransaction(response, rawTx, inputs.map(x => x.publickey));
*/
Similar to @secux/app-btc.
FAQs
SecuX Hardware Wallet DGB API
The npm package @secux/app-dgb receives a total of 0 weekly downloads. As such, @secux/app-dgb popularity was classified as not popular.
We found that @secux/app-dgb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.