Skip to content

Commit

Permalink
ton contract changes
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Aug 8, 2024
1 parent 8233b6c commit 3122ba0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const prodBridgeConfig: IBridgeConfig = {
intialFund: "50000000000000000",
contractAddress: "0xE0ea24108ec2754467D2c1D9320Cb6A16276478f",
chainType: "evm",
lastBlock: 41159628,
lastBlock: 41178006,
decimals: 18,
blockChunks: 1000,
},
Expand Down Expand Up @@ -152,7 +152,7 @@ export const prodBridgeConfig: IBridgeConfig = {
contractAddress: "EQBdyNZ2SgmurVUQ7TGnYw_PAY40En1mE2rd0yg3iX6CuiGK",
decimals: 9,
intialFund: "100000000",
lastBlock: 24014875000001,
lastBlock: 48301917000000,
nativeCoinSymbol: "TON",
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/handler/ton/utils/listenForLockEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default async function listenForLockEvents(
for (let i = 0; i < tx.outMessages.size; i++) {
const log = tx.outMessages.get(i) ?? raise("Unreachable");
// if its not the lock nft event we early return
if (log.body.asSlice().loadUint(32) !== 4205190074) {
if (log.body.asSlice().loadUint(32) !== 2105076052) {
continue;
}
const {
Expand Down

0 comments on commit 3122ba0

Please sign in to comment.