func (b *EthAPIBackend) GetValidationScore(ctx context.Context, stakerID idx.StakerID) (*big.Int, error) {
    if !b.svc.app.HasSfcStaker(stakerID) {
        return nil, nil
    }
    return b.svc.app.GetActiveValidationScore(stakerID), nil