2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-12-16 03:26:23 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// Package ethapi implements the general Ethereum API functions.
|
|
|
|
package ethapi
|
|
|
|
|
2021-04-19 07:56:44 +00:00
|
|
|
/*
|
2017-04-12 21:04:14 +00:00
|
|
|
func GetAPIs(apiBackend Backend) []rpc.API {
|
2017-05-25 15:08:13 +00:00
|
|
|
nonceLock := new(AddrLocker)
|
2017-03-16 01:54:52 +00:00
|
|
|
return []rpc.API{
|
2015-12-16 03:26:23 +00:00
|
|
|
{
|
|
|
|
Namespace: "eth",
|
|
|
|
Version: "1.0",
|
2016-06-14 22:36:31 +00:00
|
|
|
Service: NewPublicEthereumAPI(apiBackend),
|
2015-12-16 03:26:23 +00:00
|
|
|
Public: true,
|
|
|
|
}, {
|
|
|
|
Namespace: "eth",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPublicBlockChainAPI(apiBackend),
|
|
|
|
Public: true,
|
|
|
|
}, {
|
|
|
|
Namespace: "eth",
|
|
|
|
Version: "1.0",
|
2017-05-25 15:08:13 +00:00
|
|
|
Service: NewPublicTransactionPoolAPI(apiBackend, nonceLock),
|
2015-12-16 03:26:23 +00:00
|
|
|
Public: true,
|
|
|
|
}, {
|
|
|
|
Namespace: "txpool",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPublicTxPoolAPI(apiBackend),
|
|
|
|
Public: true,
|
|
|
|
}, {
|
|
|
|
Namespace: "debug",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPublicDebugAPI(apiBackend),
|
|
|
|
Public: true,
|
|
|
|
}, {
|
|
|
|
Namespace: "debug",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPrivateDebugAPI(apiBackend),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 07:56:44 +00:00
|
|
|
*/
|