syntax = "proto3"; package ibc.applications.transfer.v1; option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; // DenomTrace contains the base denomination for ICS20 fungible tokens and the // source tracing information path. message DenomTrace { option deprecated = true; // path defines the chain of port/channel identifiers used for tracing the // source of the fungible token. string path = 1; // base denomination of the relayed fungible token. string base_denom = 2; }