Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@emurgo/yoroi-eutxo-txs
Advanced tools
This is a library for providing a friendly API for building the most common transaction types in the context of a Cardano (eUTxO) Wallet.
This is a library for providing a friendly API for building the most common transaction types in the context of a Cardano (eUTxO) Wallet.
Please notice we don't have an NPM package yet as well :)
This lib is dependent on cross-csl. See the instalation instructions depending on your runtime. For the remaning of this document we will use examples assuming a NodeJS runtime.
After installing cross-csl, set the runtime:
import { init } from '@emurgo/cross-csl-nodejs';
import { setRuntime } from '@emurgo/yoroi-eUTxO-txs';
setRuntime(init);
this is just needed at the startup of your application. After that, you can get an instance of SpendOnlyWallet
:
import { SpendOnlyWallet } from '@emurgo/yoroi-eUTxO-txs';
const wallet = await SpendOnlyWallet.new(
[
{
address: 'addr1q8yr9x2jp24h3lhcp290jyz0cupsdr3z0mgr6wjq4gfyx4zkj6g2hck2e75datgvnvr7eahspjyf6mvqnut26dcgxusqppc2nl',
tx: 'ba36122323592ade04cc5e9f908a606a97ab80250e901633c700b7b59c70162e',
index: 0,
value: {
amount: 100_000_000, // 100 ADA
assets: {
'648823ffdad1610b4162f4dbc87bd47f6f9cf45d772ddef661eff198': { // policy ID hex
'77444f4745': 1 // asset name hex and amount to send
}
}
}
}
],
[
{
address: 'addr1qy9705sg44vfuz0aehckl4ja02yv838knexfq8sdcnvklu0xcvwck966mufzw0tq2h44dhpxf6uf5ee3652g5y75tzjqa7u5we',
spendingKeyInfo: {
start: 4,
path: [0, 10]
},
stakingKeyInfo: {
start: 4,
path: [2, 0]
},
}
]
);
please notice the above is only dummy data, you should really get this info from the blockchain based on the context of the wallet!
With the SpendOnlyWallet
you can create and sign transactions. A good way to see how to instantiate and create transactions using real data is to check the unit tests that submit TXs to a real node at spec/index.spec.ts
and spec/ledger.spec.ts
(for signing with a Ledger device).
FAQs
This is a library for providing a friendly API for building the most common transaction types in the context of a Cardano (eUTxO) Wallet.
The npm package @emurgo/yoroi-eutxo-txs receives a total of 49 weekly downloads. As such, @emurgo/yoroi-eutxo-txs popularity was classified as not popular.
We found that @emurgo/yoroi-eutxo-txs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.