From 9416d90d23be064447a05618614057917de98609 Mon Sep 17 00:00:00 2001 From: Pasha Date: Tue, 22 Jul 2025 14:41:00 +0300 Subject: [PATCH] change proto --- proto/treasurer/service.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proto/treasurer/service.proto b/proto/treasurer/service.proto index 30f63c0..7a7a786 100644 --- a/proto/treasurer/service.proto +++ b/proto/treasurer/service.proto @@ -13,6 +13,7 @@ service TreasurerService { rpc GetPaymentLinkSberbankB2B(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {} rpc GetPaymentLinkSBP(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {} rpc GetPaymentLinkSberPay(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {} + rpc GetPaymentLinkAlchemy(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {} rpc DeleteSavedPaymentMethods(DeleteSavedPaymentMethodsRequest) returns (google.protobuf.Empty) {} } @@ -50,6 +51,10 @@ message MainPaymentSettings { repeated Item Items = 8; bool Auto = 9; bool Recurrent = 10; + // Для крипто-платежей: + string from_wallet_address = 11; + string to_wallet_address = 12; + double crypto_amount = 13; } message Customer {