Fixes + stable gateway ids

This commit is contained in:
Stephan D
2026-02-18 20:38:08 +01:00
parent 4dc182bfa2
commit 770c7b9da9
119 changed files with 3000 additions and 734 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
package common.payment.v1;
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
// ChainAssetKey identifies an on-chain asset by network and token symbol.
message ChainAssetKey {
string chain = 1;
string token_symbol = 2;
}
// ChainAsset extends ChainAssetKey with optional contract address override.
message ChainAsset {
ChainAssetKey key = 1;
optional string contract_address = 2;
}