17 lines
313 B
Protocol Buffer
17 lines
313 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common.payment.v1;
|
|
|
|
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
|
|
|
|
import "api/proto/gateway/chain/v1/chain.proto";
|
|
|
|
|
|
message ExternalChainDetails {
|
|
string id = 1;
|
|
chain.gateway.v1.Asset asset = 2;
|
|
string address = 3;
|
|
string memo = 4;
|
|
}
|
|
|