mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
59 lines
2.1 KiB
Go
59 lines
2.1 KiB
Go
// Copyright (c) 2018 Tomochain
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package validator
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/contracts/validator/contract"
|
|
"math/big"
|
|
)
|
|
|
|
type Validator struct {
|
|
*contract.TomoValidatorSession
|
|
contractBackend bind.ContractBackend
|
|
}
|
|
|
|
func NewValidator(transactOpts *bind.TransactOpts, contractAddr common.Address, contractBackend bind.ContractBackend) (*Validator, error) {
|
|
validator, err := contract.NewTomoValidator(contractAddr, contractBackend)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &Validator{
|
|
&contract.TomoValidatorSession{
|
|
Contract: validator,
|
|
TransactOpts: *transactOpts,
|
|
},
|
|
contractBackend,
|
|
}, nil
|
|
}
|
|
|
|
func DeployValidator(transactOpts *bind.TransactOpts, contractBackend bind.ContractBackend, validatorAddress []common.Address, caps []*big.Int, ownerAddress common.Address) (common.Address, *Validator, error) {
|
|
minDeposit := new(big.Int)
|
|
minDeposit.SetString("50000000000000000000000", 10)
|
|
validatorAddr, _, _, err := contract.DeployTomoValidator(transactOpts, contractBackend, validatorAddress, caps, ownerAddress, minDeposit, big.NewInt(99), big.NewInt(100), big.NewInt(100))
|
|
if err != nil {
|
|
return validatorAddr, nil, err
|
|
}
|
|
|
|
validator, err := NewValidator(transactOpts, validatorAddr, contractBackend)
|
|
if err != nil {
|
|
return validatorAddr, nil, err
|
|
}
|
|
|
|
return validatorAddr, validator, nil
|
|
}
|