ethereum-types: Update MethodAbi definition for solidity 0.6

This commit is contained in:
Lawrence Forman
2020-04-07 14:01:35 -04:00
parent a458e81f8d
commit 1017707475
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@
{
"note": "Add `linkReferences` to `EvmBytecodeOutput` and `EvmBytecodeOutputLinkReferences` type",
"pr": 2462
},
{
"note": "Update `MethodAbi` definition for solidity 0.6",
"pr": 2540
}
],
"timestamp": 1581204851

View File

@@ -91,9 +91,9 @@ export interface MethodAbi {
name: string;
inputs: DataItem[];
outputs: DataItem[];
constant: boolean;
constant?: boolean;
stateMutability: StateMutability;
payable: boolean;
payable?: boolean;
}
export interface ConstructorAbi {