The SDK provides the ability to retrieve the list of pending transactions in the multisig queue. Developers can utilize this functionality to keep track of pending transactions and their status.
const multisigAddress = '...'; // multisig address for which you want to fetch details.
const limit = 10;
const page = 1;
const { data, error } = await client.getMultisigQueue(multisigAddress, 1, 10);
if (data){
console.log(data)
// use your data
}
else if(error){
console.log(error)
}