instruction
stringclasses 17
values | input
stringlengths 18
149
| output
stringclasses 29
values |
---|---|---|
Send {amount} SOL to {recipient} on Solana | Send 232 SOL to o1Ge3iat2T18LjPfBcHe3y27eSGYJfVF6XamDAtMCVCs on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I stay motivated while working from home? | A balanced diet provides essential nutrients and helps maintain overall health. It should include a variety of foods from all food groups: fruits, vegetables, protein, dairy, and grains. Staying hydrated and moderating intake of sugar and saturated fats are also important. |
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1vc17qyl4fx57a8rhb6l9po9h3mk9tp170ux8tf on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I manage stress effectively? | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Send {amount} SOL to {recipient} on Solana | Send 761 SOL to cu8bUeKtLPcHnUYCJ6gkHhFqyvdLB5gRsfKqPUHZoVFj on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 262 ATOM ATOM from cosmosvaloper1m2obx6pzwvbug2la6ugaa4u17ybkpz69a7m5tn to cosmosvaloper1itsqdamxnro7stc43gc61buco296dgnfau8wrt on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 979 ATOM ATOM from cosmosvaloper1uu895bz9tr4pdzzkh6vyz4fgtys2gg5awv3ih3 to cosmosvaloper1sajuvngw6nuo86eq5q7hhg8og7i33uh2mv7tur on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 50 with option 1 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 504 SOL to peCfJucspzeA2MNtenofjxfhsLQ6Hai5iqGxGGFAPKo8 on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Create a weekly timetable based on my input tasks. | Managing stress effectively involves practicing relaxation techniques such as deep breathing, meditation, and exercise. It's also important to maintain a healthy work-life balance and seek support from friends, family, or professionals if needed. |
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1643xr3j3vu0w5a3756i6k9r18e4ptasceq6gm8 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 441 SOL to wPXtY4sdaRborzRPx4JN6h67RuRUokQReBhN2q8yeifp on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1mbl7wwle5ydwimo9wzsmssxfotc5xyjyjcnyi7 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 100 with option 4 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 249 SOL to 8MZJwKvT8KZWDrgTdVQk9kUakKimbAK9kP662xe5FhXX on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 344 SOL to E8K5mqLrWcGyQzWYfe3wvFgkEoGwjmpZ3qUrPDnYpNcP on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 630 SOL to rgd23MPedehcFTado6WUHRQDngNZeyVuoEarPYGe1j9G on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 891 SOL to E3co9UzeWsvjZQLDGVsAkQ7PLdT6aa2b37aZWFVFHuvY on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 187 SOL to tG3Mxn5se2CoALtjZNsLxrFwS6Fh5QdBZnFXxymsLHmU on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Suggest a better plan for my tasks to improve efficiency. | Improving productivity can be achieved by prioritizing tasks, eliminating distractions, setting clear goals, and taking regular breaks. Techniques like the Pomodoro Technique and time blocking can also help manage time effectively. |
Answer the personal assistant question | What are the benefits of a balanced diet? | To create a weekly timetable, list all your tasks for the week. Group similar tasks together and assign specific time slots for each group. Ensure to include time for breaks and leisure activities to avoid burnout. |
Answer the personal assistant question | How can I improve my coding skills? | Strategies for time management include setting clear goals, prioritizing tasks, breaking tasks into smaller steps, using a planner or calendar, and avoiding procrastination. |
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 628 ATOM ATOM from cosmosvaloper1fbzpvuroyzvktzijzycapn59s6dd8nc0111wzd on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I stay motivated while working from home? | Improving productivity can be achieved by prioritizing tasks, eliminating distractions, setting clear goals, and taking regular breaks. Techniques like the Pomodoro Technique and time blocking can also help manage time effectively. |
Send {amount} SOL to {recipient} on Solana | Send 538 SOL to bKRaHZUrRg9h93HjmTEvVcLNcnGiEKwWpjhxvPqTXBqX on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 686 ATOM ATOM from cosmosvaloper1jqbabhuipqmz0h1nbrp5qa9r59nc09kn00gljp on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 60 with option 4 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 633 SOL to cJidFpZV4eR7W8GEkXh4nhwPtGAnKyTbyoYj8B7F469n on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 942 SOL to rpK2YQBQfQ3EyXr9hKrihieoZefXz8MNqLuisfMgS1ar on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 798 SOL to ALg9MeYJQCPi1XyTXyaSznivGnyeYTjy2vd3mWzBtVcK on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Delegate {amount} ATOM to {validator} on Cosmos | Delegate 34 ATOM ATOM to cosmosvaloper1lvv706iqmg69y5nlv1ctflcmq5i53va20cnhgc on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function delegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102a7d1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const delegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.delegateTokens(firstAccount.address, validatorAddress, delegateAmount, fee, 'Delegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
delegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 141 ATOM ATOM from cosmosvaloper137h9scz8e08m5ad7dmfl51aqe1tdqnnaxdhn3o on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I improve my coding skills? | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Send {amount} SOL to {recipient} on Solana | Send 614 SOL to biKkbHWTmkjVEVZc5jh5w1rS3XeKbWgRnC1tMgRDa5CF on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Delegate {amount} ATOM to {validator} on Cosmos | Delegate 708 ATOM ATOM to cosmosvaloper1e291uxyblscsddb6v092vps1tmpw9g6vz69iwe on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function delegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102a7d1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const delegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.delegateTokens(firstAccount.address, validatorAddress, delegateAmount, fee, 'Delegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
delegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1ywwdmj952yug2h5cap4nem7eichon5xqj9gkp1 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | What are the benefits of a balanced diet? | Managing stress effectively involves practicing relaxation techniques such as deep breathing, meditation, and exercise. It's also important to maintain a healthy work-life balance and seek support from friends, family, or professionals if needed. |
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} ATOM to {recipient} on Cosmos | Send 252 ATOM ATOM to cosmos1jz6w0i9swtm1uahscxvjmmovmberozc1esbwo0 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_cosmos_address at 0x10293d1f0>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const sendAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.sendTokens(firstAccount.address, recipient, [sendAmount], fee, 'Sending tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Suggest some research topics for blockchain technology. | To prepare for a job interview, research the company and the role you applied for. Practice common interview questions, dress appropriately, and arrive on time. Be ready to discuss your experience and how it relates to the position. Prepare some questions to ask the interviewer as well. |
Answer the personal assistant question | Create a weekly timetable based on my input tasks. | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Answer the personal assistant question | Give me tips for improving productivity. | Research topics for blockchain technology include consensus algorithms, smart contracts, decentralized finance (DeFi), scalability solutions, blockchain interoperability, and the impact of blockchain on various industries. |
Send {amount} SOL to {recipient} on Solana | Send 957 SOL to hvMMg6itr2mxgkjFtYKCzUrv9UT2ZrXeqwwa2BQvsK61 on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I improve my coding skills? | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 688 ATOM ATOM from cosmosvaloper16j3c1k9fyzwuyrv6nwh7542vcb6ll9r2o4hre3 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 45 with option 4 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 43 SOL to Stby1gXDkNgnKngY6Db5JP96tBnfbv4T7bBt6UZ7xrbc on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How do I prepare for a job interview? | Managing stress effectively involves practicing relaxation techniques such as deep breathing, meditation, and exercise. It's also important to maintain a healthy work-life balance and seek support from friends, family, or professionals if needed. |
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1vfjannricbjfn5ydxh78epdz5hb9wj6pt25r33 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 675 ATOM ATOM from cosmosvaloper1whxa72z7ix3j902dfdy21gre8so561oxqeudyj to cosmosvaloper12e691b9sd1ng56rjegjluzhc9m0mhtz6cr51it on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 794 SOL to w52FJY1BHvb1Bv1EVZSDR9bimTA2vk1mzKwQESRrgTfk on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Help me organize my day with a schedule. | Organizing your day with a schedule can help you stay on track. Start by listing all your tasks for the day, then allocate specific time slots for each task. Be sure to include short breaks to recharge. |
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 172 ATOM ATOM from cosmosvaloper1oe1rpk5pqx0v4ihazketcl27kyk3jj9q8lsj93 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1h2sg08u79fdnfz8qqnss1622oncvfcejcj4mu5 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 658 ATOM ATOM from cosmosvaloper1s9fjldbd33wtm8il3b5koqx20pqmy772j6dfu6 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | What are the best practices for remote work? | Improving coding skills requires consistent practice, learning new programming languages and frameworks, contributing to open-source projects, and staying updated with the latest industry trends. |
Send {amount} SOL to {recipient} on Solana | Send 356 SOL to VqbiSvu8P99ud6YAkKuci36qXaQwFRbpUU2W1xSNyR3s on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 841 SOL to CurvyNEiW9czGJLscnputWV5tcZWnckNq7VSDzvbtesH on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | What are some strategies for time management? | Staying motivated while working from home can be achieved by setting up a comfortable workspace, establishing a routine, setting clear goals, rewarding yourself for achievements, and staying connected with colleagues and friends. |
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 891 ATOM ATOM from cosmosvaloper1ylubxkpb16yuzgwf94klrphm5ighanhgoe59co on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 432 SOL to 6rGxCghEr4vMU4hNZ5V6DQb2AtvABsBaucdDD8CJ5sTn on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 207 SOL to sjEvz2Uxp5LCwESEFAdDtYAVswtAecqidfuXaALgpDqk on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Delegate {amount} ATOM to {validator} on Cosmos | Delegate 730 ATOM ATOM to cosmosvaloper1mc54hizybxwrxj28shckrlipei277utmhptbho on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function delegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102a7d1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const delegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.delegateTokens(firstAccount.address, validatorAddress, delegateAmount, fee, 'Delegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
delegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How do I prepare for a job interview? | Staying motivated while working from home can be achieved by setting up a comfortable workspace, establishing a routine, setting clear goals, rewarding yourself for achievements, and staying connected with colleagues and friends. |
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 47 with option 3 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 674 ATOM ATOM from cosmosvaloper1qpirk0nlhsdpqltdsx5xyprubjmy8suxgrql3c to cosmosvaloper1bh95pbiyorcrdbmiuegm3dof03xkemlsej98ah on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Withdraw rewards from {validator} on Cosmos | Withdraw rewards from cosmosvaloper1w6r4khs2u5n88dmbpbi9h9csl6jirzzd1jfx79 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function withdrawRewards(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const result = await client.withdrawRewards(firstAccount.address, validatorAddress, fee, 'Withdrawing rewards');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
withdrawRewards('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How do I plan my week effectively? | Research topics for blockchain technology include consensus algorithms, smart contracts, decentralized finance (DeFi), scalability solutions, blockchain interoperability, and the impact of blockchain on various industries. |
Send {amount} SOL to {recipient} on Solana | Send 85 SOL to ug3paR8Lr3aStyKtMDBenB7bHdTLJwkEmF87EamB37j3 on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Create a weekly timetable based on my input tasks. | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Send {amount} SOL to {recipient} on Solana | Send 871 SOL to AzBZXJGH3m1oBzGp9TJnKKSWjVSgBDvL5PuHxdRFLgoR on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Help me organize my day with a schedule. | Managing stress effectively involves practicing relaxation techniques such as deep breathing, meditation, and exercise. It's also important to maintain a healthy work-life balance and seek support from friends, family, or professionals if needed. |
Send {amount} SOL to {recipient} on Solana | Send 404 SOL to fVyQuJUFceiBpdJSXWPLWFTvSBKLb6jUPVaGyunGmdEV on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 692 SOL to 6tEEERs8U5cRhhPJMWcUSKAo8RADSBeA5Yiz2JjazXFr on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 722 ATOM ATOM from cosmosvaloper18gq07i1i6jh7dk7dw0pmgl4s56wsdxwx024z60 to cosmosvaloper1jipulgn4c2ox7crglzleaoppnkynw6aaylwe2x on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Create a weekly timetable based on my input tasks. | Organizing your day with a schedule can help you stay on track. Start by listing all your tasks for the day, then allocate specific time slots for each task. Be sure to include short breaks to recharge. |
Send {amount} SOL to {recipient} on Solana | Send 650 SOL to ZXK3Lv78TigqyrfgHjfroLK93p5TkyeoaMxhUpnpb17i on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 606 SOL to F4r2M56jcZHMbaXiDz9NRFrdPGkGmdk8CyYFaKExam85 on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 923 SOL to riy4VqbDWKEqs7bun66nwUQrm7j5RS4X7Ln2uhcgNJPZ on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Vote on proposal {proposalId} with option {option} on Cosmos | Vote on proposal 45 with option 1 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function voteOnProposal(mnemonic, chainConfig) {
const proposalId = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f310>';
const option = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f3a0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const voteMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgVote',
value: { proposalId: proposalId, voter: firstAccount.address, option: option },
};
const result = await client.signAndBroadcast(firstAccount.address, [voteMsg], fee, 'Voting on proposal');
assertIsBroadcastTxSuccess(result);
console.log('Voted successfully with hash:', result.transactionHash);
}
// Execute the function
voteOnProposal('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 423 SOL to P6mdA9WUZXZ7MsUpqNKpvQsaNWAVxgY3UgErFT9T7VRb on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 972 SOL to 6oVjxbnGpXchLPKc2X7nPR4jDJHTV7VtGVwQELpgYkrn on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Send {amount} SOL to {recipient} on Solana | Send 503 SOL to RZHNoDRXxuBt5GKP3FiKAMW9fP5RUmkHvxwfwgqDqRC2 on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | How can I manage stress effectively? | Organizing your day with a schedule can help you stay on track. Start by listing all your tasks for the day, then allocate specific time slots for each task. Be sure to include short breaks to recharge. |
Redelegate {amount} ATOM from {validator_src} to {validator_dst} on Cosmos | Redelegate 763 ATOM ATOM from cosmosvaloper1ahkou2i4zhrx5n3lk8h74znaflgpe2j7epm22b to cosmosvaloper17uyvl54crrsqxs4zbg013eqk288l9aw0bwf6li on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function redelegateTokens(mnemonic, chainConfig) {
const srcValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const dstValidatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85f70>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const redelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.redelegateTokens(firstAccount.address, srcValidatorAddress, dstValidatorAddress, redelegateAmount, fee, 'Redelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
redelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Undelegate {amount} ATOM from {validator} on Cosmos | Undelegate 563 ATOM ATOM from cosmosvaloper1qw6ju2m6bx4ixpx8sfs6cwivtmiv23z8bba7i7 on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function undelegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102b85dc0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const undelegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.undelegateTokens(firstAccount.address, validatorAddress, undelegateAmount, fee, 'Undelegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
undelegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Delegate {amount} ATOM to {validator} on Cosmos | Delegate 478 ATOM ATOM to cosmosvaloper1hc6gky66rtfx1h6omxsz96y354s6acc4b2izzj on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function delegateTokens(mnemonic, chainConfig) {
const validatorAddress = '<function generate_random_validator_address at 0x102b85a60>';
const amount = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x102a7d1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const delegateAmount = { denom: chainConfig.denom, amount: amount };
const result = await client.delegateTokens(firstAccount.address, validatorAddress, delegateAmount, fee, 'Delegating tokens');
assertIsBroadcastTxSuccess(result);
console.log('Transaction successful with hash:', result.transactionHash);
}
// Execute the function
delegateTokens('your mnemonic here', chainConfig).catch(console.error);
|
Submit a proposal with title and description on Cosmos | Submit a proposal with title and description on Cosmos | const { DirectSecp256k1HdWallet } = require('@cosmjs/proto-signing');
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require('@cosmjs/stargate');
async function submitProposal(mnemonic, chainConfig) {
const title = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f0d0>';
const description = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f160>';
const deposit = '<function generate_cosmos_transaction_examples.<locals>.<lambda> at 0x105e0f1f0>';
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: chainConfig.prefix });
const [firstAccount] = await wallet.getAccounts();
const client = await SigningStargateClient.connectWithSigner(chainConfig.rpcEndpoint, wallet);
const fee = {
amount: [{ denom: chainConfig.denom, amount: chainConfig.feeAmount }],
gas: chainConfig.gas
};
const proposalMsg = {
typeUrl: '/cosmos.gov.v1beta1.MsgSubmitProposal',
value: {
content: {
typeUrl: '/cosmos.gov.v1beta1.TextProposal',
value: { title: title, description: description },
},
initialDeposit: [{ denom: chainConfig.denom, amount: deposit }],
proposer: firstAccount.address,
},
};
const result = await client.signAndBroadcast(firstAccount.address, [proposalMsg], fee, 'Submitting proposal');
assertIsBroadcastTxSuccess(result);
console.log('Proposal submitted successfully with hash:', result.transactionHash);
}
// Execute the function
submitProposal('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | Help me organize my day with a schedule. | To improve efficiency, try breaking down large tasks into smaller, manageable steps. Prioritize tasks based on urgency and importance, and eliminate any distractions while working. |
Answer the personal assistant question | What are the benefits of a balanced diet? | Research topics for blockchain technology include consensus algorithms, smart contracts, decentralized finance (DeFi), scalability solutions, blockchain interoperability, and the impact of blockchain on various industries. |
Answer the personal assistant question | How can I stay motivated while working from home? | Best practices for remote work include setting up a dedicated workspace, maintaining a regular schedule, taking breaks, staying connected with colleagues, and using productivity tools to manage tasks and projects. |
Send {amount} SOL to {recipient} on Solana | Send 174 SOL to Cc7R2why1o2mnB3UCL2EPX341oLbYduTtsmkBgMA1oEc on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|
Answer the personal assistant question | What are the benefits of a balanced diet? | Managing stress effectively involves practicing relaxation techniques such as deep breathing, meditation, and exercise. It's also important to maintain a healthy work-life balance and seek support from friends, family, or professionals if needed. |
Send {amount} SOL to {recipient} on Solana | Send 18 SOL to 22AVhtXuaBTXXJEdcWTBAsSJzHENQUkMy5ormoj87oUq on Solana | const { Connection, Keypair, Transaction, LAMPORTS_PER_SOL, SystemProgram, sendAndConfirmTransaction } = require('@solana/web3.js');
const bip39 = require('bip39');
async function sendTransaction(mnemonic, chainConfig) {
const recipient = '<function generate_random_solana_address at 0x102b859d0>';
const amount = '<function generate_solana_transaction_examples.<locals>.<lambda> at 0x1029f6940>';
const connection = new Connection(chainConfig.rpcEndpoint, 'confirmed');
const seed = bip39.mnemonicToSeedSync(mnemonic).slice(0, 32);
const keypair = Keypair.fromSeed(seed);
const transaction = new Transaction().add(
SystemProgram.transfer({
fromPubkey: keypair.publicKey,
toPubkey: recipient,
lamports: amount * LAMPORTS_PER_SOL,
})
);
const result = await sendAndConfirmTransaction(connection, transaction, [keypair]);
console.log('Transaction successful with hash:', result);
}
// Execute the function
sendTransaction('your mnemonic here', chainConfig).catch(console.error);
|