Update CHANGELOGs
This commit is contained in:
@@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"version": "0.3.0",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Add types for `ethers.js`",
|
||||
"pr": 540
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"changes": [
|
||||
|
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user