fcl-js
fcl-js copied to clipboard
[BUG] Dapper Wallet problems with Newer Releases
Current Behavior
When I go to execute a multi-signed transaction with Dapper Wallet, I get the following error using @onflow/fcl 1.9.0:
However will older releases like 1.0.1, it works totally fine. This is the transnaction I'm running:
import EmeraldIdentityDapper from 0x39e42c67cc851cfb
transaction(discordID: String) {
prepare(admin: AuthAccount, user: AuthAccount) {
let administrator = admin.borrow<&EmeraldIdentityDapper.Administrator>(from: EmeraldIdentityDapper.AdministratorStoragePath)
?? panic("Could not borrow the administrator")
administrator.createEmeraldID(account: user.address, discordID: discordID)
}
execute {
log("Created EmeraldID")
}
}
It's a multi-signed transaction where the DW user signs as well as a backend admin.
Expected Behavior
No error
Steps To Reproduce
Run a multi-signed transaction using @onflow/fcl 1.9.0
Environment
- OS: Mac
- Node: 18.18.0
- npm: 9.8.1
What are you currently working on that this is blocking?
No response