Using the SDK, developers can retrieve information about a specific multisig wallet by providing its address. This includes details such as the signatories, threshold, and other relevant data associated with the multisig wallet.
const multisigAddress = '...' // multisig address for which you want to fetch details.
const { data, error } = await client.getMultisigDataByAddress(multisigAddress);
if (data){
console.log(data)
// use your data
}
else if(error){
console.log(error)
}