Open iamdefinitelyahuman opened 3 years ago
blackadder currently handles interfaces as though they are class methods:
blackadder
interface Foo: def bar(a: uint256, b: uint256): view def baz(a: address): nonpayable
I think in this case, a more succinct format is actually more readable. Each function definition should be placed on a single line where possible, and there should not be a blank line between functions:
It probably also makes sense to implement #7 before we work on this
blackadder
currently handles interfaces as though they are class methods:I think in this case, a more succinct format is actually more readable. Each function definition should be placed on a single line where possible, and there should not be a blank line between functions: