Fee Delegation
DynamicFeeTxType Transaction(with signature of Sender) + FeePayer address + signature of FeePayer
Fee delegation Transaction 구현 소스 참고
Fee Delegation Transaction Type (transaction.go)
const (
LegacyTxType = iota
AccessListTxType
DynamicFeeTxType
FeeDelegateDynamicFeeTxType = 22 //fee delegation
)Fee Delegation Transaction Structure (transaction.go)
type FeeDelegateDynamicFeeTx struct {
SenderTx DynamicFeeTx
FeePayer *common.Address rlp:"nil"
// Signature values
FV *big.Int json:"fv" gencodec:"required" // feePayer V
FR *big.Int json:"fr" gencodec:"required" // feePayer R
FS *big.Int json:"fs" gencodec:"required" // feePayer S
}Fee Delegation Transaction Hash Function for Signature (transaction_signing.go)
Last updated