Whoops! 😨 Something unexpected happened...
[Error Code: 1101] error caused by: 1 error occurred:
* transaction preprocess failed: [Error Code: 1101] cadence runtime error: Execution failed:
error: cannot find type in this scope: `AuthAccount`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:11:16
|
11 | prepare(acct: AuthAccount, payerAcct: AuthAccount) {
| ^^^^^^^^^^^ not found in this scope
error: cannot find type in this scope: `AuthAccount`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:11:40
|
11 | prepare(acct: AuthAccount, payerAcct: AuthAccount) {
| ^^^^^^^^^^^ not found in this scope
error: too few arguments
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:17:19
|
17 | acct.save(<- FraggleRock.createEmptyCollection(), to: FraggleRock.CollectionStoragePath)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected at least 1, got 0
error: value of type `&Account` has no member `storageUsed`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:26:22
|
26 | if (updtRecipient.storageUsed > updtRecipient.storageCapacity) {
| ^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageCapacity`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:26:50
|
26 | if (updtRecipient.storageUsed > updtRecipient.storageCapacity) {
| ^^^^^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageUsed`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:29:45
|
29 | let storageUsed = UFix64(updtRecipient.storageUsed)
| ^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageCapacity`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:30:49
|
30 | let storageCapacity = UFix64(updtRecipient.storageCapacity)
| ^^^^^^^^^^^^^^^ unknown member
error: cannot access `withdraw`: function requires `Withdraw` authorization, but reference is unauthorized
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:33:23
|
33 | let sentVault <- self.vault.withdraw(amount: flowAmount)
| ^^^^^^^^^^^^^^^^^^^
error: value of type `&Account` has no member `getCapability`
--> 49323ad87efe86db0843c77e979b6accde1881233c321d4e2f42be2c2d906dc1:34:52
|
34 | let updtRecipientFlowReceiver = updtRecipient.getCapability(/public/flowTokenReceiver).borrow<&{FungibleToken.Receiver}>()?? panic("failed to borrow reference to updtRecipient vault")
| ^^^^^^^^^^^^^ unknown member