Skip to content

Commit

Permalink
update NFTTransferMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
grishamsc committed Nov 8, 2024
1 parent a929fc2 commit 44c32fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/TonSwift/NFT/NFTTransferMessage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ public struct NFTTransferMessage {
nftTransferAmount: BigUInt,
bounce: Bool,
to: Address,
from: Address,
responseAddress: Address,
forwardPayload: Cell?) throws -> MessageRelaxed {
let forwardAmount = BigUInt(stringLiteral: "1")
let queryId = UInt64(Date().timeIntervalSince1970)

let nftTransferData = NFTTransferData(
queryId: queryId,
newOwnerAddress: to,
responseAddress: from,
responseAddress: responseAddress,
forwardAmount: forwardAmount,
forwardPayload: forwardPayload)

Expand Down

0 comments on commit 44c32fa

Please sign in to comment.