aboutsummaryrefslogblamecommitdiffstats
path: root/packages/web3-typescript-typings/index.d.ts
blob: 147a211a3f0f2ef4b38d4335a1f68a66f184a6f9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                       

                                              



                                                  

                                                                          









                                                                                                             
                                                                                      
                                                               



                                                                                                 
                                                                       

                                                                                           
                                                                                                      

          
                                                          
                                              

                                                                                              


                                                   



                                                     

     




                                  
 






                                      
 


                                                  
 





                                     
 





                                    

                                            
                                                                                             
                                 
         
 

                                     

                             
                        
                  
                       
 
declare module 'web3' {

    import * as BigNumber from 'bignumber.js';

    class Web3 {
        public static providers: typeof providers;

        public version: {
            getNetwork(cd: (err: Error, networkId: string) => void): void;
            getNode(cd: (err: Error, nodeVersion: string) => void): void;
        };

        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: Web3.Provider;
        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 {
            at(address: string): ContractInstance;
        }

        interface FilterObject {
            fromBlock: number|string;
            toBlock: number|string;
            address: string;
            topics: string[];
        }

        interface SolidityEvent<A> {
            event: string
            address: string
            args: A
        }

        interface FilterResult {
            get(callback: () => void): void;
            watch<A>(callback: (error: string|null, result: SolidityEvent<A>) => void): void;
            stopWatching(): void;
        }

        interface ContractInstance {}

        interface Provider {}
    }
    /* tslint:disable */
    export = Web3;
    /* tslint:enable */
}