Build powerful decentralized applications with our easy-to-use SDK
The Quantis SDK is currently in development. Sign up for our newsletter to be notified when it's ready for early access!
import { QuantisChain } from 'quantis-chain';
const quantis = new QuantisChain({
apiKey: 'YOUR_API_KEY',
network: 'mainnet'
});
async function sendTransaction() {
const tx = await quantis.createTransaction({
to: '0x1234...5678',
value: '1000000000000000000', // 1 QNTB
data: '0x' // Optional: Include smart contract data here
});
const signedTx = await quantis.signTransaction(tx);
const receipt = await quantis.sendSignedTransaction(signedTx);
console.log('Transaction sent:', receipt.transactionHash);
}
sendTransaction().catch(console.error);
Join our newsletter to receive updates on the Quantis SDK and be the first to know when it's ready