()
| 109 | } |
| 110 | |
| 111 | function getExternalPrograms() { |
| 112 | const binaryDir = getExternalProgramOutputDir(); |
| 113 | return getExternalProgramAddresses().map((address) => ({ |
| 114 | programId: address, |
| 115 | deployPath: path.join(binaryDir, `${address}.so`), |
| 116 | })); |
| 117 | } |
| 118 | |
| 119 | function getExternalAccounts() { |
| 120 | const binaryDir = getExternalProgramOutputDir(); |
no test coverage detected
searching dependent graphs…