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