type SafeConnectionArgs = { chain: Pick<Chain, "chainId" | "rpc">; personalWallet: EVMWallet; safeAddress: string;};
type chain = Pick<Chain, "chainId" | "rpc">;
type personalWallet = EVMWallet;
type safeAddress = string;