
Security News
/Research
npm Phishing Email Targets Developers with Typosquatted Domain
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
@sidan-lab/whisky-js-browser
Advanced tools
Wrapper around the cardano-serialization-lib for easier transaction building, heavily inspired by cardano-cli APIs
Whisky is an open-source Cardano Rust SDK, containing following modules:
whisky
- The core Rust crate supporting Cardano DApp development in Rust.whisky-common
- Serving universal types and utilities.whisky-csl
- The crate to implement most cardano-serialization-lib
wrapper.whisky-provider
- The crate to connect external services like blockfrost or maestro.whisky-wallet
- The crate to handle wallet signing and provide key encryption utility.whisky-macros
- The crate to provide Rust macros utility.whisky-js
- An point of output for wasm package for @meshsdk/core-csl
.With whisky, you can
Maestro
and Blockfrost
uplc
integrated.cargo add whisky
# For nodejs package
yarn add @sidan-lab/whisky-js-nodejs
# For browser package
yarn add @sidan-lab/whisky-js-browser
use whisky::*;
pub fn send_lovelace(
recipient_address: &str,
my_address: &str,
inputs: &[UTxO],
) -> Result<String, WError> {
let mut tx_builder = TxBuilder::new_core();
tx_builder
.tx_out(
recipient_address,
&[Asset::new_from_str("lovelace", "1000000")],
)
.change_address(my_address)
.select_utxos_from(inputs, 5000000)
.complete_sync(None)?;
Ok(tx_builder.tx_hex())
}
Please refer to the hosted documentation for the list of endpoints.
FAQs
Wrapper around the cardano-serialization-lib for easier transaction building, heavily inspired by cardano-cli APIs
The npm package @sidan-lab/whisky-js-browser receives a total of 184 weekly downloads. As such, @sidan-lab/whisky-js-browser popularity was classified as not popular.
We found that @sidan-lab/whisky-js-browser demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
Security News
Knip hits 500 releases with v5.62.0, refining TypeScript config detection and updating plugins as monthly npm downloads approach 12M.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.