/* This file is part of web3.js. web3.js 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. web3.js 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 web3.js. If not, see . */ /** * @file network-test.ts * @author Josh Stevens * @date 2018 */ import { Network } from 'web3-net'; // $ExpectType Network const network_empty = new Network(); // $ExpectType Network const network = new Network('http://localhost:5000'); // $ExpectType provider network.currentProvider; // $ExpectType any Network.givenProvider; // $ExpectType any network.givenProvider; // $ExpectType boolean network.setProvider('https://localhost:2100'); // $ExpectType BatchRequest new network.BatchRequest(); // $ExpectType any network.extend({property: 'test', methods: [{name: 'method', call: 'method'}]}); // $ExpectType Promise network.getNetworkType((error, returnValue) => { console.log(returnValue); }); // $ExpectType Promise network.getId(); // $ExpectType Promise network.getId((error: Error, id: number) => { console.log(id); }); // $ExpectType Promise network.isListening(); // $ExpectType Promise network.isListening((error: Error, listening: boolean) => { console.log(listening); }); // $ExpectType Promise network.getPeerCount(); // $ExpectType Promise network.getPeerCount((error: Error, peerCount: number) => { console.log(peerCount); });