
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@moosty/lisk-sprinkler
Advanced tools
lisk-sprinkler
is a faucet transaction with username registration.
npm install lisk-transaction
const { SprinklerTransaction } = require('@moosty/lisk-sprinkler');
app.registerTransaction(SprinklerTransaction);
const { unConfiguredSprinklerTransaction } = require('@moosty/lisk-sprinkler');
// configure amount to receive from the transaction
// balance is used as max account balance to run the sprinkler transaction
const SprinklerTransaction = unConfiguredSprinklerTransaction({
amount: "10000000000",
balance: "100000000",
})
app.registerTransaction(SprinklerTransaction);
TRANSACTION_TYPE
: 1300
sprinklerTransaction(options);
options
: Options to be used for creating Transaction.
networkIdentifier
(required): The ID of the network where the transaction will be broadcasted to.username
(required): Username for accountpassphrase
(optional): Passphrase to use to sign the transaction. If not provided at creation the transaction can be signed later.secondPassphrase
(optional): Second passphrase to use to sign the transaction if the account has registered a second passphrase. If not provided at the creation, the transaction can be signed with the second passphrase later.object
: Valid sprinkler transaction object.
Transaction({
networkIdentifier: '7158c297294a540bc9ac6e474529c3da38d03ece056e3fa2d98141e6ec54132d',
username: 'johndoe',
passphrase: "creek own stem final gate scrub live shallow stage host concert they"
});
/*
{
senderPublicKey: "5c554d43301786aec29a09b13b485176e81d1532347a351aeafe018c199fd7ca",
timestamp: 117410306,
type: 1300,
asset: {
username: 'johndoe',
}
}*/
May 7th, 2020
: Created initial release
FAQs
`lisk-sprinkler` is a faucet transaction with username registration.
The npm package @moosty/lisk-sprinkler receives a total of 0 weekly downloads. As such, @moosty/lisk-sprinkler popularity was classified as not popular.
We found that @moosty/lisk-sprinkler 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.