mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-10-31 23:17:27 +00:00 
			
		
		
		
	 75dec0d79c
			
		
	
	
		75dec0d79c
		
			
		
	
	
	
	
		
			
			* sync all third party proto definitions * update cosmos swagger for new imported third party protos
		
			
				
	
	
		
			20 lines
		
	
	
		
			613 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			613 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| package cosmos.bank.v1beta1;
 | |
| 
 | |
| import "gogoproto/gogo.proto";
 | |
| import "cosmos_proto/cosmos.proto";
 | |
| import "cosmos/base/v1beta1/coin.proto";
 | |
| 
 | |
| option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types";
 | |
| 
 | |
| // SendAuthorization allows the grantee to spend up to spend_limit coins from
 | |
| // the granter's account.
 | |
| //
 | |
| // Since: cosmos-sdk 0.43
 | |
| message SendAuthorization {
 | |
|   option (cosmos_proto.implements_interface) = "Authorization";
 | |
| 
 | |
|   repeated cosmos.base.v1beta1.Coin spend_limit = 1
 | |
|       [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
 | |
| }
 |