Skip to content

Commit

Permalink
RPC client: abft API wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
rus-alex committed Aug 23, 2023
1 parent 5bb7388 commit a562d59
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions ftmclient/abft_api.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package ftmclient

import (
"context"
"math/big"

"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common/hexutil"

"github.com/Fantom-foundation/go-opera/inter"
)

// GetValidators returns Lachesis event by hash or short ID.
func (ec *Client) GetValidators(ctx context.Context, epoch *big.Int) (inter.ValidatorProfiles, error) {
var raw map[hexutil.Uint64]interface{}
err := ec.c.CallContext(ctx, &raw, "abft_getValidators", toBlockNumArg(epoch))
if err != nil {
return nil, err
} else if len(raw) == 0 {
return nil, ethereum.NotFound
}

return inter.RPCUnmarshalValidators(raw)
}

0 comments on commit a562d59

Please sign in to comment.