@sk1ppi/solana-module-1-using-on-chain-programs
v1.0.0
Published
This package is a part of the Solana Development Course by James Pacheco and others. It contains the code for the first module of the bootcamp, which is about using on-chain programs on the Solana Network.
Downloads
4
Readme
@sk1ppi/solana-module-1-using-on-chain-programs
This package is a part of the Solana Development Course by James Pacheco and others. It contains the code for the first module of the bootcamp, which is about using on-chain programs on the Solana Network.
Install
To install the package, use the following command:
npm i @sk1ppi/solana-module-1-using-on-chain-programs
Example
Provide your own private key in your environment variables or .env file to test or use the package.
export SECRET_KEY="[...]"
To use the package, use the following code example:
const { sendPingTransaction } = require('@sk1ppi/solana-module-1-using-on-chain-programs');
async function main () {
const signature = await sendPingTransaction()
console.log(signature)
}
main()
Testing
To run tests, use the following command:
npm run test
Contribute
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.