forked from welthee/go-ethereum-aws-kms-tx-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigner_test.go
72 lines (58 loc) · 1.85 KB
/
signer_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package ethawskmssigner_test
import (
"context"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/kms"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethclient"
ethawskmssigner "github.com/welthee/go-ethereum-aws-kms-tx-signer"
"log"
"math/big"
"testing"
)
const keyId = "331c7988-c19b-4e30-8037-530389c92ac0"
const anotherEthAddr = "0xeB7eb6c156ac20a9c45beFDC95F1A13625B470b7"
const ethAddr = "https://ropsten.infura.io/v3/a76d1cb719694e48af1a539ec96f040b"
func TestSigning(t *testing.T) {
sess, err := session.NewSession(&aws.Config{
Region: aws.String("eu-central-1"),
})
if err != nil {
log.Fatalf("can not create aws session: %s", err)
}
kmsSvc := kms.New(sess)
client, err := ethclient.Dial(ethAddr)
if err != nil {
log.Fatal(err)
}
clChainId, _ := client.ChainID(context.TODO())
transactOpts, err := ethawskmssigner.NewAwsKmsTransactorWithChainID(kmsSvc, keyId, clChainId)
if err != nil {
log.Fatalf("can not sign: %s", err)
}
nonce, err := client.PendingNonceAt(context.Background(), transactOpts.From)
if err != nil {
log.Fatal(err)
}
toAddress := common.HexToAddress(anotherEthAddr)
suggestedGasPrice, _ := client.SuggestGasPrice(context.TODO())
suggestedGasLimit, err := client.EstimateGas(context.TODO(), ethereum.CallMsg{To: &toAddress, Data: nil})
if err != nil {
log.Fatal(err)
}
value := big.NewInt(10)
gasLimit := suggestedGasLimit
gasPrice := suggestedGasPrice
tx := types.NewTransaction(nonce, toAddress, value, gasLimit, gasPrice, nil)
signedTx, err := transactOpts.Signer(transactOpts.From, tx)
if err != nil {
log.Fatal(err)
}
err = client.SendTransaction(context.TODO(), signedTx)
if err != nil {
log.Fatalf("can not send tx %s", err)
}
}