
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@public-awesome/stargaze-api
Advanced tools
@public-awesome/stargaze-api
A client library for the Regen Ledger.
The library exposes one main TypeScript class: the StargazeApi
class. Import it like this in your code:
import { StargazeApi } from '@public-awesome/stargaze-api';
// Create a new instance of the StargazeApi class.
const api = new StargazeApi({
// StargazeApi supports multiple client connections to interact with a node:
// - via the Tendermint RPC
// - via gRPC
// - via gRPC-web
// - via REST and gRPC-gateway
connection: {
// Here, we are using the Tendermint RPC client connection.
type: 'tendermint',
url: 'http://devnet.stargaze.fi:26657',
},
});
// Fetch the balance of an address
const myAddress = 'stb...';
const balances = await api.query.cosmos.bank.v1beta1.AllBalances({
address: myAddress,
});
console.log(balances); // Prints `{"balances":[{"denom":"uegg","amount":"10000000000"}],"pagination":{"total":1}}`
TODO (Protobuf, decoration, signing)
FAQs
A client library for the Stargaze blockchain
The npm package @public-awesome/stargaze-api receives a total of 1 weekly downloads. As such, @public-awesome/stargaze-api popularity was classified as not popular.
We found that @public-awesome/stargaze-api 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.