# Account

创建 Account 模块对象

func NewAccountApi(c *rpc.Client) *AccountApi

# Create

通过 seed 和 index 创建一个新的账户,返回账户的公钥和私钥

func (a *AccountApi) Create(seedStr string, index uint32) (map[string]string, error)

# ForPublicKey

通过账户公钥返回账户的地址

func (a *AccountApi) ForPublicKey(pubStr string) (types.Address, error)

# PublicKey

通过账户地址返回账户公钥

func (a *AccountApi) PublicKey(addr types.Address) string 

# Validate

检测账户地址是否合法

func (a *AccountApi) Validate(addr string) bool