mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
signer: implement blob txs sendtxargs, enable blobtx-signing
This commit is contained in:
parent
f1c27c286e
commit
da679442db
3 changed files with 112 additions and 18 deletions
|
|
@ -499,9 +499,6 @@ func (s *PersonalAccountAPI) SignTransaction(ctx context.Context, args Transacti
|
||||||
if args.GasPrice == nil && (args.MaxFeePerGas == nil || args.MaxPriorityFeePerGas == nil) {
|
if args.GasPrice == nil && (args.MaxFeePerGas == nil || args.MaxPriorityFeePerGas == nil) {
|
||||||
return nil, errors.New("missing gasPrice or maxFeePerGas/maxPriorityFeePerGas")
|
return nil, errors.New("missing gasPrice or maxFeePerGas/maxPriorityFeePerGas")
|
||||||
}
|
}
|
||||||
if args.IsEIP4844() {
|
|
||||||
return nil, errBlobTxNotSupported
|
|
||||||
}
|
|
||||||
if args.Nonce == nil {
|
if args.Nonce == nil {
|
||||||
return nil, errors.New("nonce not specified")
|
return nil, errors.New("nonce not specified")
|
||||||
}
|
}
|
||||||
|
|
@ -1878,9 +1875,6 @@ func (s *TransactionAPI) SignTransaction(ctx context.Context, args TransactionAr
|
||||||
if args.GasPrice == nil && (args.MaxPriorityFeePerGas == nil || args.MaxFeePerGas == nil) {
|
if args.GasPrice == nil && (args.MaxPriorityFeePerGas == nil || args.MaxFeePerGas == nil) {
|
||||||
return nil, errors.New("missing gasPrice or maxFeePerGas/maxPriorityFeePerGas")
|
return nil, errors.New("missing gasPrice or maxFeePerGas/maxPriorityFeePerGas")
|
||||||
}
|
}
|
||||||
if args.IsEIP4844() {
|
|
||||||
return nil, errBlobTxNotSupported
|
|
||||||
}
|
|
||||||
if args.Nonce == nil {
|
if args.Nonce == nil {
|
||||||
return nil, errors.New("nonce not specified")
|
return nil, errors.New("nonce not specified")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,8 @@ import (
|
||||||
"github.com/ethereum/go-ethereum/common/math"
|
"github.com/ethereum/go-ethereum/common/math"
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
"github.com/ethereum/go-ethereum/crypto"
|
"github.com/ethereum/go-ethereum/crypto"
|
||||||
|
"github.com/ethereum/go-ethereum/crypto/kzg4844"
|
||||||
|
"github.com/holiman/uint256"
|
||||||
)
|
)
|
||||||
|
|
||||||
var typedDataReferenceTypeRegexp = regexp.MustCompile(`^[A-Za-z](\w*)(\[\])?$`)
|
var typedDataReferenceTypeRegexp = regexp.MustCompile(`^[A-Za-z](\w*)(\[\])?$`)
|
||||||
|
|
@ -92,12 +94,21 @@ type SendTxArgs struct {
|
||||||
// We accept "data" and "input" for backwards-compatibility reasons.
|
// We accept "data" and "input" for backwards-compatibility reasons.
|
||||||
// "input" is the newer name and should be preferred by clients.
|
// "input" is the newer name and should be preferred by clients.
|
||||||
// Issue detail: https://github.com/ethereum/go-ethereum/issues/15628
|
// Issue detail: https://github.com/ethereum/go-ethereum/issues/15628
|
||||||
Data *hexutil.Bytes `json:"data"`
|
Data *hexutil.Bytes `json:"data,omitempty"`
|
||||||
Input *hexutil.Bytes `json:"input,omitempty"`
|
Input *hexutil.Bytes `json:"input,omitempty"`
|
||||||
|
|
||||||
// For non-legacy transactions
|
// For non-legacy transactions
|
||||||
AccessList *types.AccessList `json:"accessList,omitempty"`
|
AccessList *types.AccessList `json:"accessList,omitempty"`
|
||||||
ChainID *hexutil.Big `json:"chainId,omitempty"`
|
ChainID *hexutil.Big `json:"chainId,omitempty"`
|
||||||
|
|
||||||
|
// For BlobTxType
|
||||||
|
BlobFeeCap *hexutil.Big `json:"maxFeePerBlobGas,omitempty"`
|
||||||
|
BlobHashes []common.Hash `json:"blobVersionedHashes,omitempty"`
|
||||||
|
|
||||||
|
// For BlobTxType transactions with blob sidecar
|
||||||
|
Blobs []kzg4844.Blob `json:"blobs,omitempty"`
|
||||||
|
Commitments []kzg4844.Commitment `json:"commitments,omitempty"`
|
||||||
|
Proofs []kzg4844.Proof `json:"proofs,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (args SendTxArgs) String() string {
|
func (args SendTxArgs) String() string {
|
||||||
|
|
@ -108,6 +119,17 @@ func (args SendTxArgs) String() string {
|
||||||
return err.Error()
|
return err.Error()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// data retrieves the transaction calldata. Input field is preferred.
|
||||||
|
func (args *SendTxArgs) data() []byte {
|
||||||
|
if args.Input != nil {
|
||||||
|
return *args.Input
|
||||||
|
}
|
||||||
|
if args.Data != nil {
|
||||||
|
return *args.Data
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// ToTransaction converts the arguments to a transaction.
|
// ToTransaction converts the arguments to a transaction.
|
||||||
func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
||||||
// Add the To-field, if specified
|
// Add the To-field, if specified
|
||||||
|
|
@ -117,15 +139,34 @@ func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
||||||
to = &dstAddr
|
to = &dstAddr
|
||||||
}
|
}
|
||||||
|
|
||||||
var input []byte
|
|
||||||
if args.Input != nil {
|
|
||||||
input = *args.Input
|
|
||||||
} else if args.Data != nil {
|
|
||||||
input = *args.Data
|
|
||||||
}
|
|
||||||
|
|
||||||
var data types.TxData
|
var data types.TxData
|
||||||
switch {
|
switch {
|
||||||
|
case args.BlobHashes != nil:
|
||||||
|
al := types.AccessList{}
|
||||||
|
if args.AccessList != nil {
|
||||||
|
al = *args.AccessList
|
||||||
|
}
|
||||||
|
data = &types.BlobTx{
|
||||||
|
To: *to,
|
||||||
|
ChainID: uint256.MustFromBig((*big.Int)(args.ChainID)),
|
||||||
|
Nonce: uint64(args.Nonce),
|
||||||
|
Gas: uint64(args.Gas),
|
||||||
|
GasFeeCap: uint256.MustFromBig((*big.Int)(args.MaxFeePerGas)),
|
||||||
|
GasTipCap: uint256.MustFromBig((*big.Int)(args.MaxPriorityFeePerGas)),
|
||||||
|
Value: uint256.MustFromBig((*big.Int)(&args.Value)),
|
||||||
|
Data: args.data(),
|
||||||
|
AccessList: al,
|
||||||
|
BlobHashes: args.BlobHashes,
|
||||||
|
BlobFeeCap: uint256.MustFromBig((*big.Int)(args.BlobFeeCap)),
|
||||||
|
}
|
||||||
|
if args.Blobs != nil {
|
||||||
|
data.(*types.BlobTx).Sidecar = &types.BlobTxSidecar{
|
||||||
|
Blobs: args.Blobs,
|
||||||
|
Commitments: args.Commitments,
|
||||||
|
Proofs: args.Proofs,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
case args.MaxFeePerGas != nil:
|
case args.MaxFeePerGas != nil:
|
||||||
al := types.AccessList{}
|
al := types.AccessList{}
|
||||||
if args.AccessList != nil {
|
if args.AccessList != nil {
|
||||||
|
|
@ -139,7 +180,7 @@ func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
||||||
GasFeeCap: (*big.Int)(args.MaxFeePerGas),
|
GasFeeCap: (*big.Int)(args.MaxFeePerGas),
|
||||||
GasTipCap: (*big.Int)(args.MaxPriorityFeePerGas),
|
GasTipCap: (*big.Int)(args.MaxPriorityFeePerGas),
|
||||||
Value: (*big.Int)(&args.Value),
|
Value: (*big.Int)(&args.Value),
|
||||||
Data: input,
|
Data: args.data(),
|
||||||
AccessList: al,
|
AccessList: al,
|
||||||
}
|
}
|
||||||
case args.AccessList != nil:
|
case args.AccessList != nil:
|
||||||
|
|
@ -150,7 +191,7 @@ func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
||||||
Gas: uint64(args.Gas),
|
Gas: uint64(args.Gas),
|
||||||
GasPrice: (*big.Int)(args.GasPrice),
|
GasPrice: (*big.Int)(args.GasPrice),
|
||||||
Value: (*big.Int)(&args.Value),
|
Value: (*big.Int)(&args.Value),
|
||||||
Data: input,
|
Data: args.data(),
|
||||||
AccessList: *args.AccessList,
|
AccessList: *args.AccessList,
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
@ -160,7 +201,7 @@ func (args *SendTxArgs) ToTransaction() *types.Transaction {
|
||||||
Gas: uint64(args.Gas),
|
Gas: uint64(args.Gas),
|
||||||
GasPrice: (*big.Int)(args.GasPrice),
|
GasPrice: (*big.Int)(args.GasPrice),
|
||||||
Value: (*big.Int)(&args.Value),
|
Value: (*big.Int)(&args.Value),
|
||||||
Data: input,
|
Data: args.data(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return types.NewTx(data)
|
return types.NewTx(data)
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,13 @@
|
||||||
|
|
||||||
package apitypes
|
package apitypes
|
||||||
|
|
||||||
import "testing"
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/common"
|
||||||
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
|
)
|
||||||
|
|
||||||
func TestIsPrimitive(t *testing.T) {
|
func TestIsPrimitive(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
@ -39,3 +45,56 @@ func TestIsPrimitive(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestTxArgs(t *testing.T) {
|
||||||
|
for i, tc := range []struct {
|
||||||
|
data []byte
|
||||||
|
want common.Hash
|
||||||
|
wantType uint8
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
data: []byte(`{"from":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","accessList":[],"blobVersionedHashes":["0x010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c444014"],"chainId":"0x7","gas":"0x124f8","gasPrice":"0x693d4ca8","input":"0x","maxFeePerBlobGas":"0x3b9aca00","maxFeePerGas":"0x6fc23ac00","maxPriorityFeePerGas":"0x3b9aca00","nonce":"0x0","r":"0x2a922afc784d07e98012da29f2f37cae1f73eda78aa8805d3df6ee5dbb41ec1","s":"0x4f1f75ae6bcdf4970b4f305da1a15d8c5ddb21f555444beab77c9af2baab14","to":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","type":"0x1","v":"0x0","value":"0x0","yParity":"0x0"}`),
|
||||||
|
want: common.HexToHash("0x7d53234acc11ac5b5948632c901a944694e228795782f511887d36fd76ff15c4"),
|
||||||
|
wantType: types.BlobTxType,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// on input, we don't read the type, but infer the type from the arguments present
|
||||||
|
data: []byte(`{"from":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","accessList":[],"chainId":"0x7","gas":"0x124f8","gasPrice":"0x693d4ca8","input":"0x","maxFeePerBlobGas":"0x3b9aca00","maxFeePerGas":"0x6fc23ac00","maxPriorityFeePerGas":"0x3b9aca00","nonce":"0x0","r":"0x2a922afc784d07e98012da29f2f37cae1f73eda78aa8805d3df6ee5dbb41ec1","s":"0x4f1f75ae6bcdf4970b4f305da1a15d8c5ddb21f555444beab77c9af2baab14","to":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","type":"0x12","v":"0x0","value":"0x0","yParity":"0x0"}`),
|
||||||
|
want: common.HexToHash("0x7919e2b0b9b543cb87a137b6ff66491ec7ae937cb88d3c29db4d9b28073dce53"),
|
||||||
|
wantType: types.DynamicFeeTxType,
|
||||||
|
},
|
||||||
|
} {
|
||||||
|
|
||||||
|
var txArgs SendTxArgs
|
||||||
|
if err := json.Unmarshal(tc.data, &txArgs); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if have := txArgs.ToTransaction().Type(); have != tc.wantType {
|
||||||
|
t.Errorf("test %d, have type %d, want type %d", i, have, tc.wantType)
|
||||||
|
}
|
||||||
|
if have := txArgs.ToTransaction().Hash(); have != tc.want {
|
||||||
|
t.Errorf("test %d: have %v, want %v", i, have, tc.want)
|
||||||
|
}
|
||||||
|
d2, err := json.Marshal(txArgs)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
var txArgs2 SendTxArgs
|
||||||
|
if err := json.Unmarshal(d2, &txArgs2); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if have, want := txArgs.ToTransaction().Hash(), txArgs2.ToTransaction().Hash(); have != want {
|
||||||
|
t.Errorf("test %d: have %v, want %v", i, have, want)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
End to end testing:
|
||||||
|
|
||||||
|
$ go run ./cmd/clef --advanced --suppress-bootwarn
|
||||||
|
|
||||||
|
$ go run ./cmd/geth --nodiscover --maxpeers 0 --signer /home/user/.clef/clef.ipc console
|
||||||
|
|
||||||
|
> tx={"from":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","to":"0x1b442286e32ddcaa6e2570ce9ed85f4b4fc87425","gas":"0x124f8","maxFeePerGas":"0x6fc23ac00","maxPriorityFeePerGas":"0x3b9aca00","value":"0x0","nonce":"0x0","input":"0x","accessList":[],"maxFeePerBlobGas":"0x3b9aca00","blobVersionedHashes":["0x010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c444014"]}
|
||||||
|
> eth.signTransaction(tx)
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue