Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@harmoniclabs/cardanocli-pluts
Advanced tools
cardanocli-pluts
is a library that wraps cardano-cli using Typescript allowing you to interact with the cli using the Types exposed by plu-ts
cardano-node >= 1.29.0
node.js >= 12.19.0
plu-ts >= 0.2.0
import { CardanoCliPluts } from "@harmoniclabs/cardanocli-pluts"
import { Value } from "@harmoniclabs/plu-ts"
const cli = new CardanoCliPluts({
network: "testnet 42"
});
async function main(){
// read a saved address from file
const bobAddr = await cli.utils.readAddress( "./addresses/bob.addr" );
// or make a new addres using the cli
const { privateKey, publicKey } = await cli.address.keyGen();
const myAddr = await cli.address.build({
payment: { publicKey }
});
// query the UTxOs at myAddr
const myUtxos = await cli.query.utxo({
address: myAddr
});
// send some ada to bob
const tx = await cli.transaction.build({
inputs: [{ utxo: myUtxos[0] }],
outpus: [
{
address: bobAddr,
value: Value.lovelaces(2_000_000)
}
],
changeAddress: myAddr
});
const txSigned = await cli.transaction.sign({
tx,
privateKey
});
// let's check everything is ok before submission
console.log(
JSON.stringify(
txSigned.toJson(),
undefined,
2
)
);
// send the transaction
cli.transaction.submit({ tx: txSigned })
}
main()
FAQs
typescript wrapper on top of the cardano-cli tool
The npm package @harmoniclabs/cardanocli-pluts receives a total of 0 weekly downloads. As such, @harmoniclabs/cardanocli-pluts popularity was classified as not popular.
We found that @harmoniclabs/cardanocli-pluts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.