We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i'm trying to get message hash after sending transaction but what i get is undefined.
`let transfer = await contract.sendTransfer({ seqno, secretKey: keyPair.secretKey, messages: [internal({ value: toNano('0.1'), to: address, body: 'Send using @ton-org/ton', bounce: false, })] });
console.log("Transfer: ", transfer);`
`const transfer = await contract.createTransfer({ seqno, secretKey: keypair.secretKey, messages: [internal({ value: "0.1", to: address, body: 'Send using @ton-org/ton', })], });
const result = await contract.send(transfer);
console.log("Result: ", result);`
and from https://docs.ton.org/develop/dapps/cookbook#how-to-find-transaction-or-message-hash its say i can still get message hash or does this documentation outdated?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i'm trying to get message hash after sending transaction but what i get is undefined.
`let transfer = await contract.sendTransfer({
seqno,
secretKey: keyPair.secretKey,
messages: [internal({
value: toNano('0.1'),
to: address,
body: 'Send using @ton-org/ton',
bounce: false,
})]
});
console.log("Transfer: ", transfer);`
`const transfer = await contract.createTransfer({
seqno,
secretKey: keypair.secretKey,
messages: [internal({
value: "0.1",
to: address,
body: 'Send using @ton-org/ton',
})],
});
const result = await contract.send(transfer);
console.log("Result: ", result);`
and from https://docs.ton.org/develop/dapps/cookbook#how-to-find-transaction-or-message-hash its say i can still get message hash or does this documentation outdated?
The text was updated successfully, but these errors were encountered: