Hi I’m new to Algorand and not a formally trained programmer. I’m building an app for users to pool money into a multisignature account to be disbursed later on. I’m considering a serverless web app using Firebase. I have a couple questions to make sure I’m understanding the SDK correctly.
The algorandsdk is a server side library and cannot be used on the client side. Is this correct? Ideally, I would like the users to create their own algorand addresses and safekeep their own private keys. But, for algorandsdk to be initialized, it requires server address, port, and token. So if I need to create addresses on user’s behalf, I technically have to create the new wallets through kmd on my server side. Are there any implementations out there that do it differently? So wallet services technically can peek inside user’s private keys since they are created server side? Maybe I’m misunderstanding something here.
Separately, without knowing the details of your application, you may find our Smart Contracts useful for creating the logic you need to pool and disburse the funds.