()
| 136 | } |
| 137 | let accountIndex = 0; |
| 138 | const getNextAccount = () => { |
| 139 | const accountMeta = (instruction.accounts as TAccountMetas)[accountIndex]!; |
| 140 | accountIndex += 1; |
| 141 | return accountMeta; |
| 142 | }; |
| 143 | return { |
| 144 | programAddress: instruction.programAddress, |
| 145 | accounts: { newAccount: getNextAccount() }, |
no outgoing calls
no test coverage detected