TransactionSEALED

▓■◆@╲◇?░#▓▒^○□▒~▒^■╱╳▒█■&╳○╲@●█*◆#▪▫*▓○□$◆◇?%^○%!▫○▪░▓~█&○?╲^■◇◇

Transaction ID

Timestamp

Oct 26, 2025, 03:03:40 PM UTC
4mo ago

Block Height

130,704,087

Computation

0

Execution Fee

0.00002924 FLOW

Transaction Summary

Contract Call

Called NonFungibleToken, RareRooms_NFT, BloctoStorageRent

Script Arguments

Copy:
0idUInt64
50700

Cadence Script

1// Transfer script from blocto
2
3import NonFungibleToken from 0x1d7e57aa55817448
4import RareRooms_NFT from 0x329feb3ab062d289
5import BloctoStorageRent from 0x1dfd1e5b87b847dc
6
7transaction(id: UInt64, to: Address) {
8	let sentNFT:@{NonFungibleToken.NFT}
9
10	let address: Address
11
12	prepare(signer: auth(BorrowValue) &Account) {
13		let collectionRef = signer.storage
14			.borrow<auth(NonFungibleToken.Withdraw) &{NonFungibleToken.Collection}>(from: RareRooms_NFT.CollectionStoragePath)
15			?? panic("Could not borrow a collection reference")
16
17		self.sentNFT <- collectionRef.withdraw(withdrawID: id)
18		self.address = signer.address
19	}
20
21	execute {
22		let recipient = getAccount(to)
23
24		let receiverRef = recipient.capabilities
25			.borrow<&{RareRooms_NFT.RareRooms_NFTCollectionPublic}>(RareRooms_NFT.CollectionPublicPath)
26			?? panic("Could not borrow a collection reference to the recipient's collection")
27		
28		receiverRef.deposit(token: <-self.sentNFT)
29		BloctoStorageRent.tryRefill(self.address)
30		BloctoStorageRent.tryRefill(to)
31	}
32}