Brandon Wilson
Brandon Wilson
``` const ioredisMock = require('ioredis-mock') const redisMock = new ioredisMock() async function test() { const key = 'key' const value = 1 await redisMock.eval('redis.call("set", KEYS[1], tonumber(ARGV[1]))', 1, key, value) const...
Following the docker instructions https://github.com/interledgerjs/ilp-connector#run-the-connector-in-docker results in: >Unable to find image 'interledgerjs/ilp-connector:latest' locally docker: Error response from daemon: manifest for interledgerjs/ilp-connector:latest not found: manifest unknown: manifest unknown. It does not...
Account provider may prefer to poll the state of a created and funded outgoing payment to check for completion/failure and withdraw remaining liquidity. Outgoing payment liquidity withdrawal is currently only...
Add a configurable development-mode-only access token that bypasses the RS doing token introspection at the AS. If the RS needs to represent all of these privileges as a grant, this...
The backend should use the `key` returned in the token introspection response to validate the httpsig on the request from the client. https://datatracker.ietf.org/doc/html/draft-ietf-gnap-resource-servers#section-3.3
In order to support the connector routing packets to a destination that is a peer of a peer (no parent / child relationships), it should be possible to add the...
Instead of incoming payment queries happening within ilp-pay's [`setupPayment`](https://github.com/interledgerjs/interledgerjs/tree/master/packages/pay#setuppayment). This will allow the Rafiki backend to include the necessary GNAP access token (#583) in incoming payment requests. related to: -...
The backend needs to request a grant to read incoming payments (for all payment pointers, no specific `identifier`) at any other Open Payments server where an incoming payment is the...
related: - https://github.com/interledger/open-payments/commit/95f129bb420c0b67e0a869e72de3cc05fe3ef0ad - https://github.com/interledger/open-payments/pull/159