(name: string, address: string)
| 53 | } |
| 54 | |
| 55 | recordContract(name: string, address: string): void { |
| 56 | console.log(`Deployed ${name} to ${address}`); |
| 57 | this.contracts[name] = address; |
| 58 | } |
| 59 | |
| 60 | recordAction(name: string, content: string): void { |
| 61 | console.log(`${name}: ${content}`); |