Update CHANGELOGs

This commit is contained in:
Jacob Evans
2018-04-19 16:54:42 +10:00
parent 4bee63afc6
commit 5c232b6a8d
6 changed files with 31 additions and 15 deletions

View File

@@ -1,4 +1,13 @@
[
{
"version": "0.3.0",
"changes": [
{
"note": "Add types for `ethers.js`",
"pr": 540
}
]
},
{
"version": "0.2.0",
"changes": [

View File

@@ -23,17 +23,9 @@ declare module 'ethers' {
export class Interface {
public functions: { [functionName: string]: FunctionDescription };
public events: { [eventName: string]: EventDescription };
// public static decodeParams(types: string[], data: string): any[];
constructor(abi: any);
}
export class Contract {
constructor(address: string, abi: any, provider: any);
}
}
declare module 'ethers/utils/abi-coder' {
export class Coder {
public decode(names: any[], types: any[], data?: any[]): any[];
defaultCoder: Coder;
}
}