Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rkohl committed Aug 6, 2021
1 parent 82802e5 commit 2674c54
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Sources/ContractABI/Contract/Contract.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,10 @@ public protocol StaticContract: Contract {
/// Static Deployed Contract
/// A deployed `Contract` where all methods and events are defined statically
/// - note: Address should never return nil
public protocol DeployedContract: SolidityFunctionHandler {
var address: Address { get }
var node: Blockchain.Node { get }
var events: [SolidityEvent] { get }
public protocol DeployedContract: ERC20Contract, AnnotatedERC20 {

init(address: Address, node: Blockchain.Node)
func name() -> SolidityInvocation
func symbol() -> SolidityInvocation
func decimals() -> SolidityInvocation

}
/// Contract that is dynamically generated from a JSON representation
///
Expand Down

0 comments on commit 2674c54

Please sign in to comment.