Add Privy type wallet

This commit is contained in:
2025-03-05 10:36:54 +07:00
parent 30bf9d26f6
commit 988cc9eb61
21 changed files with 287 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
using Managing.Infrastructure.Evm.Models;
namespace Managing.Infrastructure.Evm.Abstractions;
public interface IPrivyService
{
Task<PrivyWallet> CreateWalletAsync(string chainType = "ethereum");
Task<HttpResponseMessage> SendTransactionAsync(string walletId, string recipientAddress, long value,
string caip2 = "eip155:84532");
}