service

package
v0.0.0-...-9faecf3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 13, 2020 License: LGPL-3.0 Imports: 27 Imported by: 0

Documentation

Index

Constants

View Source
const (
	RPERMISSION = iota //read
	WPERMISSION        //write
)
View Source
const (
	LOCKED   = iota //locked
	UNLOCKED        //unlocked
)
View Source
const (
	MODULENAME = "accounts"
)

Variables

View Source
var (
	ErrExistKeystore   = errors.New("exist keystore")
	ErrClosedWallet    = errors.New("wallet is not open")
	ErrLockedWallet    = errors.New("wallet is already locked")
	ErrNotAHash        = errors.New("msg is not a hash")
	ErrAlreadyUnLocked = errors.New("wallet is already unlocked")
	ErrExistKey        = errors.New("privkey is exist")
	ErrMissingKeystore = errors.New("not found keystore")
	ErrAccountExist    = errors.New("addr is not exist")
)
View Source
var (
	KeyStoreDirFlag = common.DirectoryFlag{
		Name:  "keystore",
		Usage: "Directory for the keystore (default = inside the homedir)",
	}

	WalletPasswordFlag = cli.StringFlag{
		Name:  "walletpassword",
		Usage: "keep wallet open",
	}

	EnableWalletFlag = cli.BoolFlag{
		Name:  "enableWallet",
		Usage: "is wallet flag",
	}

	DefaultConfig = &accountTypes.Config{
		Enable:      true,
		Type:        "filestore",
		KeyStoreDir: "keystore",
	}
)

Functions

This section is empty.

Types

type AccountApi

type AccountApi struct {
	EvmService *evm.EvmService
	Wallet     *Wallet
	// contains filtered or unexported fields
}

name: 账号rpc接口 usage: 地址管理及发起简单交易 prefix:account

func (*AccountApi) CancelCandidateCredit

func (accountapi *AccountApi) CancelCandidateCredit(from crypto.CommonAddress, amount, gasprice, gaslimit *common.Big, data common.Bytes) (string, error)
 name: CancelCandidateCredit
 usage: 取消候选
 params:
	1. 发起转账的地址
	2. 接受者的地址
	3. 金额
	4. gas价格
	5. gas上线
	6. 备注
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_cancelCandidateCredit","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000",""],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

func (*AccountApi) CancelVoteCredit

func (accountapi *AccountApi) CancelVoteCredit(from crypto.CommonAddress, to crypto.CommonAddress, amount, gasprice, gaslimit *common.Big) (string, error)
 name: CancelVoteCredit
 usage:
 params:
	1. 发起转账的地址
	2. 接受者的地址
	3. 金额
	4. gas价格
	5. gas上线
	6. 备注
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_cancelVoteCredit","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

func (*AccountApi) CandidateCredit

func (accountapi *AccountApi) CandidateCredit(from crypto.CommonAddress, amount, gasprice, gaslimit *common.Big, data string) (string, error)
 name: CandidateCredit
 usage: 候选节点质押
 params:
	1. 质押者的地址
	2. 质押金额
	3. gas价格
	4. gas上线
	5. 质押者地址对应的pubkey,质押者的P2p信息
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_candidateCredit","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000","{\"Pubkey\":\"0x020e233ebaed5ade5e48d7ee7a999e173df054321f4ddaebecdb61756f8a43e91c\",\"Node\":\"enode://3f05da2475bf09ce20b790d76b42450996bc1d3c113a1848be1960171f9851c0@149.129.172.91:44444\"}"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

func (*AccountApi) CloseWallet

func (accountapi *AccountApi) CloseWallet()
 name: closeWallet
 usage: 关闭钱包
 params:
 return: 无
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_closeWallet","params":[], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":null}

func (*AccountApi) CreateAccount

func (accountapi *AccountApi) CreateAccount() (*crypto.CommonAddress, error)
 name: createAccount
 usage: 创建本地账号
 return: 新账号地址信息
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_createAccount","params":[], "id": 3}' -H "Content-Type:application/json"
 response:
	  {"jsonrpc":"2.0","id":3,"result":"0x2944c15c466fad03ec1282bab579dec5a0cf0fa3"}

func (*AccountApi) CreateCode

func (accountapi *AccountApi) CreateCode(from crypto.CommonAddress, byteCode common.Bytes, amount, gasprice, gaslimit *common.Big) (string, error)
 name: createCode
 usage: 部署合约
 params:
	1. 部署合约的地址
	2. 合约内容
	3. 金额
	4. gas价格
	5. gas上限
 return: 合约地址
 example:
 	curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_createCode","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x608060405234801561001057600080fd5b5061018c806100206000396000f3fe608060405260043610610051576000357c0100000000000000000000000000000000000000000000000000000000900480634f2be91f146100565780636d4ce63c1461006d578063db7208e31461009e575b600080fd5b34801561006257600080fd5b5061006b6100dc565b005b34801561007957600080fd5b5061008261011c565b604051808260070b60070b815260200191505060405180910390f35b3480156100aa57600080fd5b506100da600480360360208110156100c157600080fd5b81019080803560070b9060200190929190505050610132565b005b60016000808282829054906101000a900460070b0192506101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff160217905550565b60008060009054906101000a900460070b905090565b806000806101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff1602179055505056fea165627a7a723058204b651e4313ab6bc4eda61084cac1f805699cefbb979ddfd3a2d7f970903307cd0029","0x111","0x110","0x30000"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x9a8d8d5d7d00bbe0eb1b9431a13a7219008e352241b751b177bfb29e4e75b0d1"}

func (*AccountApi) CreateWallet

func (accountapi *AccountApi) CreateWallet(password string) error
 name: createWallet
 usage: 创建本地钱包
 params:
	1. 钱包密码
 return:  失败返回错误原因,成功不返回任何信息
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_createWallet","params":["123"], "id": 3}' -H "Content-Type:application/json"
 response:
	  {"jsonrpc":"2.0","id":3,"result":null}

func (*AccountApi) DumpPrivkey

func (accountapi *AccountApi) DumpPrivkey(address *crypto.CommonAddress) (*secp256k1.PrivateKey, error)
 name: dumpPrivkey
 usage: 导出地址对应的私钥
 params:
	1.地址
 return: 私钥
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_dumpPrivkey","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5"], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":"0x270f4b122603999d1c07aec97e972a2ddf7bd8b5bfe3543c10814e6a19f13aaf"}

func (*AccountApi) DumpPubkey

func (accountapi *AccountApi) DumpPubkey(address *crypto.CommonAddress) (*secp256k1.PublicKey, error)
 name: DumpPubkey
 usage: 导出地址对应的公钥
 params:
	1.地址
 return: 公钥
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_dumpPubkey","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5"], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":"0x270f4b122603999d1c07aec97e972a2ddf7bd8b5bfe3543c10814e6a19f13aaf"}

func (*AccountApi) EstimateGas

func (accountapi *AccountApi) EstimateGas(from crypto.CommonAddress, amount *common.Big, data common.Bytes, to *crypto.CommonAddress) (uint64, error)
 name: estimateGas
 usage: 估算交易需要多少gas
 params:
	1. 发起转账的地址
	2. 金额
	3. 备注/data
	4. 接收者的地址
 return: 评估结果,失败返回错误
 example:
	curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_estimateGas","params":["0xec61c03f719a5c214f60719c3f36bb362a202125","0xecfb51e10aa4c146bf6c12eee090339c99841efc","0x6d4ce63c","0x110","0x30000"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x5d74aba54ace5f01a5f0057f37bfddbbe646ea6de7265b368e2e7d17d9cdeb9c"}

func (*AccountApi) ExecuteContract

func (accountapi *AccountApi) ExecuteContract(from crypto.CommonAddress, to crypto.CommonAddress, input common.Bytes, gasprice, gaslimit *common.Big) (string, error)
 name: executeContract
 usage: 执行智能合约(导致数据被修改)
 params:
	1. 调用者的地址
	2. 合约地址
	3. 代码
	3. gas价格
	4. gas上限
 return: 交易hash
 example:
	curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_executeContract","params":["0xec61c03f719a5c214f60719c3f36bb362a202125","0xecfb51e10aa4c146bf6c12eee090339c99841efc","0x6d4ce63c","0x110","0x30000"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x5d74aba54ace5f01a5f0057f37bfddbbe646ea6de7265b368e2e7d17d9cdeb9c"}

func (*AccountApi) GenerateAddresses

func (accountapi *AccountApi) GenerateAddresses(address crypto.CommonAddress) (*RpcAddresses, error)
 name: generateAddresses
 usage: 生成其他链的地址
 params:
	1.drep地址
 return: {BTCaddress, ethAddress, neoAddress}
 example:
	curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_generateAddresses","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5"], "id": 3}' -H "Content-Type:application/json"

response:

{"jsonrpc":"2.0","id":3,"result":""}

func (*AccountApi) ImportKeyStore

func (accountapi *AccountApi) ImportKeyStore(path, password string) ([]*crypto.CommonAddress, error)
 name: importKeyStore
 usage: 导入keystore
 params:
	1.path
	2.password
 return: address list
 example:
	 curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_importKeyStore","params":["path","123"], "id": 3}' -H "Content-Type:application/json"

response:

{"jsonrpc":"2.0","id":3,"result":["0x4082c96e38def8f3851831940485066234fe07b8"]}

func (*AccountApi) ImportPrivkey

func (accountapi *AccountApi) ImportPrivkey(privBytes common.Bytes) (*crypto.CommonAddress, error)
 name: importPrivkey
 usage: 导入私钥
 params:
	1.privkey(compress hex)
 return: address
 example:
	curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_importPrivkey","params":["0xe5510b32854ca52e7d7d41bb3196fd426d551951e2fd5f6b559a62889d87926c"], "id": 3}' -H "Content-Type:application/json"

response:

{"jsonrpc":"2.0","id":3,"result":"0x748eb65493a964e568800c3c2885c63a0de9f9ae"}

func (*AccountApi) ListAddress

func (accountapi *AccountApi) ListAddress() ([]string, error)

name: listAddress usage: 列出所有本地地址 return: 地址数组 example: curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_listAddress","params":[], "id": 3}' -H "Content-Type:application/json" response:

{"jsonrpc":"2.0","id":3,"result":["0x3296d3336895b5baaa0eca3df911741bd0681c3f","0x3ebcbe7cb440dd8c52940a2963472380afbb56c5"]}

func (*AccountApi) LockAccount

func (accountapi *AccountApi) LockAccount(addr crypto.CommonAddress) error
 name: lockAccount
 usage: 锁定账号
 params:
 return:  失败返回错误原因,成功不返回任何信息
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_lockAccount","params":["0x518b3fefa3fb9a72753c6ad10a2b68cc034ec391"], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":null}

func (*AccountApi) OpenWallet

func (accountapi *AccountApi) OpenWallet(password string) error
 name: openWallet
 usage: 打开钱包
 params:
	1. 钱包密码
 return: 无
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_openWallet","params":["123"], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":null}

func (*AccountApi) ReadContract

func (accountapi *AccountApi) ReadContract(from, to crypto.CommonAddress, input common.Bytes) (common.Bytes, error)
 name: readContract
 usage: 读取智能合约(无数据被修改)
 params:
    1. 发交易的账户地址
	2. 合约地址
	3. 合约接口
 return: 查询结果
 example:
	curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_readContract","params":["0xec61c03f719a5c214f60719c3f36bb362a202125","0xecfb51e10aa4c146bf6c12eee090339c99841efc","0x6d4ce63c"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":""}

func (*AccountApi) SetAlias

func (accountapi *AccountApi) SetAlias(srcAddr crypto.CommonAddress, alias string, gasprice, gaslimit *common.Big) (string, error)
 name: setAlias
 usage: 设置别名
 params:
	1. 带设置别名的地址
	2. 别名
	3. gas价格
	4. gas上限
 return: 交易地址
 example:
	curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_setAlias","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","AAAAA","0x110","0x30000"],"id":1}' http://127.0.0.1:15645

response:

{"jsonrpc":"2.0","id":1,"result":"0x5adb248f2943e12fb91c140bd3d0df6237712061e9abae97345b0869c3daa749"}

func (*AccountApi) Sign

func (accountapi *AccountApi) Sign(address crypto.CommonAddress, hash common.Bytes) (common.Bytes, error)
 name: sign
 usage: 关闭钱包
 params:
	1.地址
	2.消息hash
 return: 私钥
 example:
	curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_sign","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5", "0x00001c9b8c8fdb1f53faf02321f76253704123e2b56cce065852bab93e526ae2"], "id": 3}' -H "Content-Type:application/json"

response:

{"jsonrpc":"2.0","id":3,"result":"0x1f1d16412468dd9b67b568d31839ac608bdfddf2580666db4d364eefbe285fdaed569a3c8fa1decfebbfa0ed18b636059dbbf4c2106c45fc8846909833ef2cb1de"}

func (*AccountApi) Transfer

func (accountapi *AccountApi) Transfer(from crypto.CommonAddress, to crypto.CommonAddress, amount, gasprice, gaslimit *common.Big, data common.Bytes) (string, error)
 name: transfer
 usage: 转账
 params:
	1. 发起转账的地址
	2. 接受者的地址
	3. 金额
	4. gas价格
	5. gas上限
	6. 备注/data
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_transfer","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000",""],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

func (*AccountApi) TransferWithNonce

func (accountapi *AccountApi) TransferWithNonce(from crypto.CommonAddress, to crypto.CommonAddress, amount, gasprice, gaslimit *common.Big, data common.Bytes, nonce uint64) (string, error)
 name: transferWithNonce
 usage: 转账
 params:
	1. 发起转账的地址
	2. 接受者的地址
	3. 金额
	4. gas价格
	5. gas上限
	6. 备注
    7. nonce
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_transferWithNonce","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000","",1],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

func (*AccountApi) UnlockAccount

func (accountapi *AccountApi) UnlockAccount(addr crypto.CommonAddress) error
 name: account_unlockAccount
 usage: 解锁账号
 params:
	1. 账号地址
 return: 失败返回错误原因,成功不返回任何信息
 example:   curl http://localhost:15645 -X POST --data '{"jsonrpc":"2.0","method":"account_unlockAccount","params":["0x518b3fefa3fb9a72753c6ad10a2b68cc034ec391"], "id": 3}' -H "Content-Type:application/json"
 response:
	 {"jsonrpc":"2.0","id":3,"result":null}

func (*AccountApi) VoteCredit

func (accountapi *AccountApi) VoteCredit(from crypto.CommonAddress, to crypto.CommonAddress, amount, gasprice, gaslimit *common.Big) (string, error)
 name: VoteCredit
 usage: 投票
 params:
	1. 发起转账的地址
	2. 接受者的地址
	3. 金额
	4. gas价格
	5. gas上线
	6. 备注
 return: 交易地址
 example:   curl -H "Content-Type: application/json" -X post --data '{"jsonrpc":"2.0","method":"account_voteCredit","params":["0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x3ebcbe7cb440dd8c52940a2963472380afbb56c5","0x111","0x110","0x30000"],"id":1}' http://127.0.0.1:15645
 response:
	 {"jsonrpc":"2.0","id":1,"result":"0x3a3b59f90a21c2fd1b690aa3a2bc06dc2d40eb5bdc26fdd7ecb7e1105af2638e"}

type AccountService

type AccountService struct {
	EvmService         *evm.EvmService             `service:"vm"`
	DatabaseService    *database.DatabaseService   `service:"database"`
	Chain              chain.ChainServiceInterface `service:"chain"`
	PoolQuery          blockmgr.IBlockMgrPool      `service:"blockmgr"`
	MessageBroadCastor blockmgr.ISendMessage       `service:"blockmgr"`
	Config             *accountTypes.Config
	Wallet             *Wallet
	// contains filtered or unexported fields
}

AccountService

func (*AccountService) Api

func (accountService *AccountService) Api() []app.API

Api api none

func (*AccountService) CommandFlags

func (accountService *AccountService) CommandFlags() ([]cli.Command, []cli.Flag)

Flags flags enable load js and execute before run

func (*AccountService) CreateWallet

func (accountService *AccountService) CreateWallet(password string) error

func (*AccountService) DefaultConfig

func (accountService *AccountService) DefaultConfig() *accountTypes.Config

func (*AccountService) Init

func (accountService *AccountService) Init(executeContext *app.ExecuteContext) error

Init set console Config

func (*AccountService) Name

func (accountService *AccountService) Name() string

Name service name

func (*AccountService) P2pMessages

func (accountService *AccountService) P2pMessages() map[int]interface{}

func (*AccountService) Receive

func (accountService *AccountService) Receive(context actor.Context)

func (*AccountService) Start

func (accountService *AccountService) Start(executeContext *app.ExecuteContext) error

func (*AccountService) Stop

func (accountService *AccountService) Stop(executeContext *app.ExecuteContext) error

type RpcAccount

type RpcAccount struct {
	Addr   *crypto.CommonAddress
	Pubkey string
}

type RpcAddresses

type RpcAddresses struct {
	BtcAddress      string
	EthAddress      string
	NeoAddress      string
	RippleAddress   string
	DashAddress     string
	DogeCoinAddress string
	LiteCoinAddress string
	CosmosAddress   string
	TronAddress     string
}

type Wallet

type Wallet struct {
	// contains filtered or unexported fields
}

Wallet is used to manage private keys, build simple transactions and other functions.

func NewWallet

func NewWallet(config *accountTypes.Config, chainId types.ChainIdType) (*Wallet, error)

NewWallet based in config

func (*Wallet) Close

func (wallet *Wallet) Close()

Close wallet to disable wallet

func (*Wallet) DumpPrivateKey

func (wallet *Wallet) DumpPrivateKey(addr *crypto.CommonAddress) (*secp256k1.PrivateKey, error)

DumpPrivateKey query private key by address

func (*Wallet) GetAccountByAddress

func (wallet *Wallet) GetAccountByAddress(addr *crypto.CommonAddress) (*types.Node, error)

GetAccountByAddress query account according to address

func (*Wallet) GetAccountByPubkey

func (wallet *Wallet) GetAccountByPubkey(pubkey *secp256k1.PublicKey) (*types.Node, error)

GetAccountByAddress query account according to public key

func (*Wallet) ImportKeyStore

func (wallet *Wallet) ImportKeyStore(path, password string) ([]*crypto.CommonAddress, error)

func (*Wallet) ImportPrivKey

func (wallet *Wallet) ImportPrivKey(key *secp256k1.PrivateKey) (*types.Node, error)

func (*Wallet) IsLock

func (wallet *Wallet) IsLock() bool

IsLock query current lock state 0 is locked 1 is unlock

func (*Wallet) IsOpen

func (wallet *Wallet) IsOpen() bool

IsOpen query current wallet open state

func (*Wallet) ListAddress

func (wallet *Wallet) ListAddress() ([]string, error)

ListAddress get all address in wallet

func (*Wallet) Lock

func (wallet *Wallet) Lock(addr *crypto.CommonAddress) error

Lock wallet to disable private key

func (*Wallet) NewAccount

func (wallet *Wallet) NewAccount() (*types.Node, error)

NewAccount create new address

func (*Wallet) Open

func (wallet *Wallet) Open(password string) error

Open wallet to use wallet

func (*Wallet) Sign

func (wallet *Wallet) Sign(addr *crypto.CommonAddress, msg []byte) ([]byte, error)

Sign sign a message using key in wallet

func (*Wallet) UnLock

func (wallet *Wallet) UnLock(addr *crypto.CommonAddress) error

UnLock wallet to enable private key

func (*Wallet) UnlockAccount

func (wallet *Wallet) UnlockAccount(addr *crypto.CommonAddress) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL