aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorJacob Evans <jacob@dekz.net>2018-04-19 14:54:42 +0800
committerJacob Evans <jacob@dekz.net>2018-04-19 15:16:05 +0800
commit5c232b6a8d3920ed987fcc9b158a17a62a953172 (patch)
tree5b2233a989d8afb9606b09eed81026c253088c5e /packages/typescript-typings
parent4bee63afc69b10ee5a9a4aa9279a926068a37242 (diff)
downloaddexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar.gz
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar.bz2
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar.lz
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar.xz
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.tar.zst
dexon-sol-tools-5c232b6a8d3920ed987fcc9b158a17a62a953172.zip
Update CHANGELOGs
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/CHANGELOG.json9
-rw-r--r--packages/typescript-typings/types/ethers/index.d.ts8
2 files changed, 9 insertions, 8 deletions
diff --git a/packages/typescript-typings/CHANGELOG.json b/packages/typescript-typings/CHANGELOG.json
index a2f1e7615..3ef30ad8e 100644
--- a/packages/typescript-typings/CHANGELOG.json
+++ b/packages/typescript-typings/CHANGELOG.json
@@ -1,5 +1,14 @@
[
{
+ "version": "0.3.0",
+ "changes": [
+ {
+ "note": "Add types for `ethers.js`",
+ "pr": 540
+ }
+ ]
+ },
+ {
"version": "0.2.0",
"changes": [
{
diff --git a/packages/typescript-typings/types/ethers/index.d.ts b/packages/typescript-typings/types/ethers/index.d.ts
index a3d27a98c..7e04c7dd1 100644
--- a/packages/typescript-typings/types/ethers/index.d.ts
+++ b/packages/typescript-typings/types/ethers/index.d.ts
@@ -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;
- }
-}