mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 00:27:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package zgc.evmutil.v1beta1;
 | 
						|
 | 
						|
import "gogoproto/gogo.proto";
 | 
						|
 | 
						|
option go_package = "github.com/0glabs/0g-chain/x/evmutil/types";
 | 
						|
option (gogoproto.equal_all) = true;
 | 
						|
option (gogoproto.verbose_equal_all) = true;
 | 
						|
 | 
						|
// ConversionPair defines a 0gChain ERC20 address and corresponding denom that is
 | 
						|
// allowed to be converted between ERC20 and sdk.Coin
 | 
						|
message ConversionPair {
 | 
						|
  option (gogoproto.goproto_getters) = false;
 | 
						|
 | 
						|
  // ERC20 address of the token on the 0gChain EVM
 | 
						|
  bytes zgChain_erc20_address = 1 [
 | 
						|
    (gogoproto.customname) = "ZgChainERC20Address",
 | 
						|
    (gogoproto.casttype) = "HexBytes"
 | 
						|
  ];
 | 
						|
 | 
						|
  // Denom of the corresponding sdk.Coin
 | 
						|
  string denom = 2;
 | 
						|
}
 | 
						|
 | 
						|
// AllowedCosmosCoinERC20Token defines allowed cosmos-sdk denom & metadata
 | 
						|
// for evm token representations of sdk assets.
 | 
						|
// NOTE: once evm token contracts are deployed, changes to metadata for a given
 | 
						|
// cosmos_denom will not change metadata of deployed contract.
 | 
						|
message AllowedCosmosCoinERC20Token {
 | 
						|
  option (gogoproto.goproto_getters) = false;
 | 
						|
 | 
						|
  // Denom of the sdk.Coin
 | 
						|
  string cosmos_denom = 1;
 | 
						|
  // Name of ERC20 contract
 | 
						|
  string name = 2;
 | 
						|
  // Symbol of ERC20 contract
 | 
						|
  string symbol = 3;
 | 
						|
  // Number of decimals ERC20 contract is deployed with.
 | 
						|
  uint32 decimals = 4;
 | 
						|
}
 |