https://docs.gnosis-safe.io/build/sdks/core-sdk
Looking at the above, I can approve a transaction taking the txHash from the API. But if I want to execute the transaction as below it takes a safeTransaction
const ethAdapterOwner3 = new EthersAdapter({ ethers, signer: owner3 }) const safeSdk3 = await safeSdk2.connect({ ethAdapter: ethAdapterOwner3, safeAddress }) const executeTxResponse = await safeSdk3.executeTransaction(safeTransaction) await executeTxResponse.wait() How do I load back the safeTransaction? My usecase is that when a transaction is created, owners will be notified and they'll be informed to login to the app to sign the transactions.
Thanks