Skip to content

Commit

Permalink
Fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
aSpite committed Sep 21, 2023
1 parent 98e386c commit 062c60b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/develop/dapps/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ import { Address, beginCell, internal, storeMessageRelaxed, toNano } from "@ton/

async function main() {
const jettonWalletAddress = Address.parse('put your jetton wallet address');
const destinationAddress = Address.parse('put destionation wallet address');
const destinationAddress = Address.parse('put destination wallet address');

const forwardPayload = beginCell()
.storeUint(0, 32) // 0 opcode means we have a comment
Expand Down Expand Up @@ -297,7 +297,7 @@ async function main() {
apiKey: 'put your api key'
})
);
const destinationAddress = new TonWeb.Address('put destionation wallet address');
const destinationAddress = new TonWeb.Address('put destination wallet address');

const forwardPayload = new TonWeb.boc.Cell();
forwardPayload.bits.writeUint(0, 32); // 0 opcode means we have a comment
Expand Down

0 comments on commit 062c60b

Please sign in to comment.