Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@maestro-org/typescript-sdk
Advanced tools
npm i @maestro-org/typescript-sdk
import { MaestroClient, Configuration } from "@maestro-org/typescript-sdk";
let maestroClient = new MaestroClient(
new Configuration({
apiKey: "<PROJECT_API_KEY>",
network: "Preprod",
})
);
Preview
, Preprod
, Mainnet
, Sanchonet
import { MaestroClient, Configuration } from "@maestro-org/typescript-sdk";
let maestroClient = new MaestroClient(
new Configuration({
apiKey: "<PROJECT_API_KEY>",
network: "Preprod",
})
);
maestroClient.addresses
.utxosByAddress(
"adaddr_test1wpgexmeunzsykesf42d4eqet5yvzeap6trjnflxqtkcf66g0kpnxt"
)
.then((x) => console.log(x.data))
.catch((error) => {
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
console.log(error.response.data);
console.log(error.response.status);
console.log(error.response.headers);
} else if (error.request) {
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
console.log(error.request);
} else {
// Something happened in setting up the request that triggered an Error
console.log("Error", error.message);
}
});
maestroClient.addresses
.utxosByAddresses([
"addr_test1wpgexmeunzsykesf42d4eqet5yvzeap6trjnflxqtkcf66g0kpnxt",
])
.then((x) => console.log(x.data));
Meastro welcomes all contributors! Please see our contributing guidelines and code of conduct.
FAQs
TypeScript SDK for the Maestro Dapp Platform
The npm package @maestro-org/typescript-sdk receives a total of 198 weekly downloads. As such, @maestro-org/typescript-sdk popularity was classified as not popular.
We found that @maestro-org/typescript-sdk 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.