api.go 212 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 package api import ( "github.com/ethereum/go-ethereum/rpc/shared" ) // Merge multiple API's to a single API instance func Merge(apis ...shared.EthereumApi) shared.EthereumApi { return newMergedApi(apis...) }