
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
@thirdweb-dev/solana
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
thirdweb's Solana SDK for Browser, Node and React Native
Install the latest version of the SDK with either npm
or yarn
:
npm install @thirdweb-dev/solana
yarn add @thirdweb-dev/solana
The first thing to do to get started with Solana using thirdweb is to deploy a program. You can do this via the Dashboard, or via the SDK with the following snippet:
import { ThirdwebSDK } from "@thirdweb-dev/solana";
// First, we instantiate the SDK and connect to Solana devnet
const sdk = ThirdwebSDK.fromNetwork("devnet");
// Next, we pass in a signer to the SDK (you can generate this or use your own)
// If you want to generate this, you can use Kepair.generate() from @solana/web3.js
const signer = {
publicKey: "...",
secretKey: "...",
};
sdk.wallet.connect(signer);
// Finally, we can deploy a new NFT Collection program
const address = await sdk.deployer.createNftCollection({
name: "My Collection",
});
Once we have a deployed program, we can access it using the SDK to read and write data to the program:
// Here, we pass in the address of our deployed program
const program = await sdk.getNFTCollection(address);
// And now we can read data off our program, like getting all the NFTs from our collection
const nfts = await program.getAll();
// Or we can write data/send transactions to our program, like minting a new NFT
const mintAddress = await program.mint({
name: "New NFT",
});
const nft = await program.get(mintAddress);
You can learn more about thirdweb and the Solana SDK with the following resources:
FAQs
thirdweb Solana SDK
The npm package @thirdweb-dev/solana receives a total of 167 weekly downloads. As such, @thirdweb-dev/solana popularity was classified as not popular.
We found that @thirdweb-dev/solana demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.