81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
declare module 'web3' {
|
|
|
|
import * as BigNumber from 'bignumber.js';
|
|
|
|
class Web3 {
|
|
public static providers: typeof providers;
|
|
|
|
public version: {
|
|
getNetwork(): number;
|
|
getNode(): string;
|
|
};
|
|
|
|
public eth: {
|
|
coinbase: string;
|
|
defaultAccount: string;
|
|
compile: {
|
|
solidity(sourceString: string, cb?: (err: any, result: any) => void): object,
|
|
}
|
|
sign(address: string, message: string, callback: (err: Error, signData: string) => void): string;
|
|
getBlock(blockHash: string, callback: (err: Error, blockObj: any) => void): BigNumber.BigNumber;
|
|
getBlockNumber(callback: (err: Error, blockNumber: number) => void): void;
|
|
contract(abi: Web3.AbiDefinition[]): Web3.Contract;
|
|
getBalance(addressHexString: string,
|
|
callback?: (err: any, result: BigNumber.BigNumber) => void): BigNumber.BigNumber;
|
|
getCode(addressHexString: string,
|
|
callback?: (err: any, code: string) => void): string;
|
|
filter(value: string|Web3.FilterObject): Web3.FilterResult;
|
|
getAccounts(callback: (err: Error, value: any) => void): string[];
|
|
sendTransaction(txData: any, callback: (err: Error, value: any) => void): void;
|
|
getTransactionReceipt(txHash: string, callback: (err: Error, receipt: any) => void): void;
|
|
};
|
|
|
|
public setProvider(provider: Web3.Provider): void;
|
|
public currentProvider(): any;
|
|
public fromWei(amount: number|BigNumber.BigNumber, unit: string): BigNumber.BigNumber;
|
|
public toWei(amount: number|BigNumber.BigNumber, unit: string): BigNumber.BigNumber;
|
|
public isAddress(address: string): boolean;
|
|
}
|
|
|
|
namespace providers {
|
|
class HttpProvider implements Web3.Provider {
|
|
constructor(url?: string);
|
|
}
|
|
}
|
|
|
|
namespace Web3 {
|
|
interface AbiIOParameter {
|
|
name: string;
|
|
type: string;
|
|
}
|
|
|
|
interface AbiDefinition {
|
|
constants: boolean;
|
|
inputs: AbiIOParameter[];
|
|
name: string;
|
|
outputs: AbiIOParameter[];
|
|
type: string;
|
|
}
|
|
|
|
interface Contract {}
|
|
|
|
interface FilterObject {
|
|
fromBlock: number|string;
|
|
toBlock: number|string;
|
|
address: string;
|
|
topics: string[];
|
|
}
|
|
|
|
interface FilterResult {
|
|
get(callback: () => void): void;
|
|
watch(callback: () => void): void;
|
|
stopWatching(): void;
|
|
}
|
|
|
|
interface Provider {}
|
|
}
|
|
/* tslint:disable */
|
|
export = Web3;
|
|
/* tslint:enable */
|
|
}
|