()
| 200 | } |
| 201 | |
| 202 | async getInfo(): Promise<{ |
| 203 | gatewayAppId: string; |
| 204 | kmsContractAddr: string; |
| 205 | chainId: number; |
| 206 | appImplementation: string; |
| 207 | }> { |
| 208 | const config = this.loadConfig(); |
| 209 | return { |
| 210 | gatewayAppId: config.gatewayAppId, |
| 211 | kmsContractAddr: config.kmsContractAddr, |
| 212 | chainId: config.chainId, |
| 213 | appImplementation: config.appImplementation, |
| 214 | }; |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | // initialize app |