File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,17 @@ type (
47
47
SetSignatures (signatures ... signingtypes.SignatureV2 ) error
48
48
SetMemo (memo string )
49
49
SetFeeAmount (amount sdk.Coins )
50
+ // SetFeePayer sets the address of who will pay the fees for this transaction.
51
+ // Note: The fee payer must sign the transaction in addition to any other required signers.
50
52
SetFeePayer (feePayer sdk.AccAddress )
51
53
SetGasLimit (limit uint64 )
52
54
SetTimeoutHeight (height uint64 )
53
55
SetTimeoutTimestamp (timestamp time.Time )
54
56
SetUnordered (v bool )
57
+ // SetFeeGranter sets the address of the fee granter for this transaction.
58
+ // A fee granter is an account that has given permission (via the feegrant module)
59
+ // to pay fees on behalf of another account. Unlike the fee payer, the fee granter
60
+ // does not need to sign the transaction.
55
61
SetFeeGranter (feeGranter sdk.AccAddress )
56
62
AddAuxSignerData (tx.AuxSignerData ) error
57
63
}
You can’t perform that action at this time.
0 commit comments