const ix = await multisig.instructions.vaultTransactionExecute({
multisigPda: new PublicKey(multisigAddress),
transactionIndex,
member: new PublicKey(memberAddress),
})
and receive error
TypeError: Cannot read properties of undefined (reading 'getAccountInfo')
at _VaultTransaction.fromAccountAddress (file:///Users/mikenova/repos/trade-relay/node_modules/@sqds/multisig/lib/index.mjs:1547:42)
at Object.vaultTransactionExecute (file:///Users/mikenova/repos/trade-relay/node_modules/@sqds/multisig/lib/index.mjs:6063:53)
which looks like default connection is not getting injected into the function. this error is not happening for multisig.instructions.vaultTransactionCreate, multisig.instructions.proposalCreate, etc.
i did a workaround by just passing my own connection into the method but having issues compiling the resulting instruction, maybe that could also be related.
using @sqds/multisig 2.1.3 i run
and receive error
which looks like default connection is not getting injected into the function. this error is not happening for multisig.instructions.vaultTransactionCreate, multisig.instructions.proposalCreate, etc.
i did a workaround by just passing my own connection into the method but having issues compiling the resulting instruction, maybe that could also be related.