TransactionSEALED
●▓▫○@◇●╳█◇╱╲~▓○○□░*#%╲◆#%!▒●$■●^$╳■╳╳▓*█$?*○~╲◇&~?╱□&●^*◇&╲▓◇░╲!
Transaction ID
Execution Error
Error Code: 1009
error caused by: 1 error occurred:
Raw Error
[Error Code: 1009] error caused by: 1 error occurred: * transaction verification failed: [Error Code: 1006] invalid proposal key: public key 6 on account f380b22ef386ac7e does not have a valid signature: [Error Code: 1009] invalid envelope key: public key 6 on account f380b22ef386ac7e does not have a valid signature: signature is not valid
Transaction Summary
TransactionScript Arguments
0amountUFix64
0.00100000
1addressAddress
Cadence Script
1import FungibleToken from 0xf233dcee88fe0abe
2import FlowToken from 0x1654653399040a61
3import EVM from 0xe467b9dd11fa00df
4
5transaction(amount: UFix64, address: Address) {
6 let sentVault: @FlowToken.Vault
7
8 prepare(signer: auth(Storage, EVM.Withdraw) &Account) {
9 let coa = signer.storage.borrow<auth(EVM.Withdraw) &EVM.CadenceOwnedAccount>(
10 from: /storage/evm
11 ) ?? panic("Could not borrow reference to the COA!")
12 let withdrawBalance = EVM.Balance(attoflow: 0)
13 withdrawBalance.setFLOW(flow: amount)
14 self.sentVault <- coa.withdraw(balance: withdrawBalance) as! @FlowToken.Vault
15 }
16
17 execute {
18 let account = getAccount(address)
19 let receiver = account.capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)!
20 receiver.deposit(from: <-self.sentVault)
21 }
22}