FT TransferSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 05:40:46 AM UTC
2w ago

Block Height

141,944,659

Computation

0

Execution Fee

0.00082 FLOW

Execution Error

Error Code: 1110

computation error: [Error Code: 1110] computation exceeds limit (18)

Error ContextLine 100
Raw Error

[Error Code: 1110] error caused by: 1 error occurred: * storage limit check failed: [Error Code: 1101] cadence runtime error: Execution failed: error: computation error: [Error Code: 1110] computation exceeds limit (18) --> e467b9dd11fa00df.FlowStorageFees:100:30 Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.

Transaction Summary

FT Transfer

Called FungibleToken, FlowToken

Script Arguments

0amountUFix64
799.47080942

Cadence Script

1// This transaction is a template for a transaction that
2// could be used by anyone to send tokens to another account
3// that has been set up to receive tokens.
4//
5// The withdraw amount and the account from getAccount
6// would be the parameters to the transaction
7
8import FungibleToken from 0xf233dcee88fe0abe
9import FlowToken from 0x1654653399040a61
10
11transaction(amount: UFix64, to: Address) {
12
13    // The Vault resource that holds the tokens that are being transferred
14    let sentVault: @{FungibleToken.Vault}
15
16    prepare(signer: auth(BorrowValue) &Account) {
17
18        // Get a reference to the signer's stored vault
19        let vaultRef = signer.storage.borrow<auth(FungibleToken.Withdraw) &FlowToken.Vault>(from: /storage/flowTokenVault)
20            ?? panic("The signer does not store a FlowToken Vault object at the path "
21                    .concat("/storage/flowTokenVault. ")
22                    .concat("The signer must initialize their account with this vault first!"))
23
24        // Withdraw tokens from the signer's stored vault
25        self.sentVault <- vaultRef.withdraw(amount: amount)
26    }
27
28    execute {
29
30        // Get a reference to the recipient's Receiver
31        let receiverRef =  getAccount(to)
32            .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)
33            ?? panic("Could not borrow a Receiver reference to the FlowToken Vault in account "
34                .concat(to.toString()).concat(" at path /public/flowTokenReceiver")
35                .concat(". Make sure you are sending to an address that has ")
36                .concat("a FlowToken Vault set up properly at the specified path."))
37
38        // Deposit the withdrawn tokens in the recipient's receiver
39        receiverRef.deposit(from: <-self.sentVault)
40    }
41}