You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
package v1
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"github.com/woop-chain/woop/eth/rpc"
|
|
"github.com/woop-chain/woop/wiki"
|
|
internal_common "github.com/woop-chain/woop/internal/common"
|
|
)
|
|
|
|
// PublicLegacyService provides an API to access the Woop blockchain.
|
|
// Services here are legacy methods, specific to the V1 RPC that can be deprecated in the future.
|
|
type PublicLegacyService struct {
|
|
wiki *wiki.Woop
|
|
}
|
|
|
|
// NewPublicLegacyAPI creates a new API for the RPC interface
|
|
func NewPublicLegacyAPI(wiki *wiki.Woop, namespace string) rpc.API {
|
|
if namespace == "" {
|
|
namespace = "wiki"
|
|
}
|
|
|
|
return rpc.API{
|
|
Namespace: namespace,
|
|
Version: "1.0",
|
|
Service: &PublicLegacyService{wiki},
|
|
Public: true,
|
|
}
|
|
}
|
|
|
|
// GetBalance returns the amount of Atto for the given address in the state of the
|
|
// given block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta
|
|
// block numbers are also allowed.
|
|
func (s *PublicLegacyService) GetBalance(
|
|
ctx context.Context, address string, blockNrOrHash rpc.BlockNumberOrHash,
|
|
) (*hexutil.Big, error) {
|
|
addr, err := internal_common.ParseAddr(address)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
balance, err := s.wiki.GetBalance(ctx, addr, blockNrOrHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return (*hexutil.Big)(balance), nil
|
|
}
|
|
|