()
| 180 | } |
| 181 | |
| 182 | async getAppImplementation(): Promise<string> { |
| 183 | const result = await this.client.readContract({ |
| 184 | address: this.kmsContractAddr, |
| 185 | abi: DSTACK_KMS_ABI, |
| 186 | functionName: 'appImplementation' |
| 187 | }); |
| 188 | return result as string; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | // initialize app |