Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const main = async() => {
const attestationSignature = attestationResponse.attestation;
console.log(`Signature: ${attestationSignature}`)

// STEP 5: Using the message bytes and signature recieve the funds on destination chain and address
// STEP 5: Using the message bytes and signature receive the funds on destination chain and address
web3.setProvider(process.env.AVAX_TESTNET_RPC); // Connect web3 to AVAX testnet
const receiveTxGas = await avaxMessageTransmitterContract.methods.receiveMessage(messageBytes, attestationSignature).estimateGas();
const receiveTx = await avaxMessageTransmitterContract.methods.receiveMessage(messageBytes, attestationSignature).send({gas: receiveTxGas});
Expand Down