Configure Kinetic
Kinetic is highly configurable, giving you a huge amount of power in how you manage your Kinetic instance.
Kinetic configuration is split between settings you control via Environment Variables, as well as those you can change in Kinetic itself with the Kinetic Manager.
Kinetic Manager
Kinetic Manager is a powerful tool for managing, maintaining and observing the performance of your Kinetic instance.
Check out some of the key features below:
Set Your RPC Provider
A Solana RPC provider is required for Kinetic to be able to access data on the Solana blockchain.
Solana provides free api endpoints for this, e.g. for devnet
:
https://api.devnet.solana.com
These free endpoints are rate limited, so depending on your use-case, you may want to upgrade to a paid service.
Learn more about Solana RPC Providers here.
Provision, View And Manage Your Apps
Note - You can add apps via your Environment Variables as well.
View Your Transactions
See a filterable list of all your transactions in one place or drill down into an individual transaction to see how long each step in the process has taken.
View Your Fee Payer Wallet Status
Check your app hot-wallet balances, mints and more.
Configure Your App Settings
Mints
Add multiple mints to your Kinetic instance.
Access Control
Define who / how your Kinetic instance is accessed.
Webhooks
Configure your app webhooks so you can view events, verify transactions, get an automated warning if your hot-wallet balance falls below a threshold, etc.
Balance Webhook
The balance webhook allows you to receive an alert when your app's hotwallet is running low on Sol so you can top it up and ensure your app can continue to keep transacting.
E.g. In a node express server:
app.use('/balance', async (req, res) => {
const data = req.body
// DO STUFF WITH THE BALANCE ALERT
res.sendStatus(200)
})
Event Webhook
The event webhook allows you to receive alerts when actions have been confirmed on the Solana blockchain.
E.g. In a node express server:
app.use('/events', async (req, res) => {
const event = req.body
// DO STUFF WITH THE EVENT DATA
res.sendStatus(200)
})
Verify Webhook
The verify webhook allows you to have fine-grained control over transactions, making sure they meet your own criteria before allowing them to proceed.
E.g. In a node express server return a 200
status code to approve the transaction or a 400
to reject it:
app.use('/verify', async (req, res) => {
const transaction = req.body
// CHECK THAT YOU WANT THIS TRANSACTION TO PROCEED
// e.g.
if (transaction.amount < 1000000) {
res.sendStatus(200)
}
res.sendStatus(400)
})
Kinny Discord
Join our community.
Was this page helpful to you?
Provide feedback