You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a known <LinkOuthref='https://docs.tigerbeetle.com/operating/docker/#exited-with-code-137'>issue</LinkOut> when running TigerBeetle in Docker. The container exits without logs and simply shows error code 137. To fix this, increase the Docker memory limit. If you run the local Docker playground on a Windows machine via the Windows Subsystem for Linux (WSL), you can increase the memory limit by <LinkOuthref='https://learn.microsoft.com/en-us/windows/wsl/wsl-config#example-wslconfig-file'>configuring</LinkOut> your `.wslconfig` file.
296
+
There is a known <LinkOuthref='https://docs.tigerbeetle.com/operating/docker/#exited-with-code-137'>issue</LinkOut> when running TigerBeetle in Docker. The container exits without logs and simply shows error code 137. To fix this, increase the Docker memory limit. If you run the local Docker playground on a Windows machine via the Windows Subsystem for Linux (WSL), you can increase the memory limit by <LinkOuthref='https://learn.microsoft.com/en-us/windows/wsl/wsl-config#example-wslconfig-file'>configuring</LinkOut> your `.wslconfig` file.
Copy file name to clipboardexpand all lines: packages/documentation/src/content/docs/integration/requirements/wallet-addresses.mdx
+13-12
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Each payment account belonging to your users (e.g., customers) must have at leas
11
11
12
12
- Your Rafiki instance must be set up for at least one asset before wallet addresses can be created as each wallet address must have an asset assigned to it.
13
13
- Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.
14
+
14
15
:::
15
16
16
17
## Create wallet addresses
@@ -84,12 +85,12 @@ We strongly recommend you store at least the `walletAddress.id` in your internal
84
85
85
86
<divclass="overflow-table">
86
87
87
-
|Variable | Description |
88
-
|-------- | ----------- |
89
-
|`assetId`| The unique ID of the asset, assigned by Rafiki when the asset was created, that the wallet address's underlying payment account is denominated in |
90
-
|`publicName`| The public name associated with the wallet address |
91
-
|`url`| The wallet address's case-insensitive URL |
92
-
|`additionalProperties`| Optional [additional properties](/apis/graphql/backend/inputobjects/#additionalpropertyinput) associated with the wallet address |
|`assetId`| The unique ID of the asset, assigned by Rafiki when the asset was created, that the wallet address's underlying payment account is denominated in |
91
+
|`publicName`| The public name associated with the wallet address|
92
+
|`url`| The wallet address's case-insensitive URL|
93
+
|`additionalProperties`| Optional [additional properties](/apis/graphql/backend/inputobjects/#additionalpropertyinput) associated with the wallet address |
93
94
94
95
</div>
95
96
@@ -194,11 +195,11 @@ Open Payments <LinkOut href="https://openpayments.dev/apis/wallet-address-server
194
195
195
196
<divclass="overflow-table">
196
197
197
-
| Parameter | Required value | Description |
198
-
| --------- | -------------- | ----------- |
199
-
|`alg`|`EdDSA`| The algorithm used to generate the key pair |
200
-
|`kty`|`OKP`| The key type identifying the cryptographic algorithm family used with the key |
201
-
|`crv`|`Ed25519`| The cryptographic curve used with the key |
To recreate the signed payload string, concatenate the following.
166
+
166
167
- The timestamp extracted from the header
167
168
- A period (.) character
168
169
- The actual JSON payload from the request body, containing the `id`, `type`, and `data` attributes
@@ -178,6 +179,7 @@ Use HMAC SHA-256 with the `SIGNATURE_SECRET` environment variable as the key and
178
179
Finally, compare the signature in the header to the expected signature you generated. For security, use a constant-time comparison function to prevent timing attacks.
179
180
180
181
### Example
182
+
181
183
Below is an example in JavaScript to verify Rafiki's webhook signature:
Copy file name to clipboardexpand all lines: packages/documentation/src/content/docs/overview/concepts/telemetry.mdx
+10-10
Original file line number
Diff line number
Diff line change
@@ -167,23 +167,23 @@ When the `ENABLE_TELEMETRY` variable is `true`, the following are required.
167
167
168
168
<divclass="overflow-table">
169
169
170
-
| Variable name | Type | Description |
171
-
| ------------- | ---- | ----------- |
172
-
|`INSTANCE_NAME`| String | Your Rafiki instance's name used to communicate for telemetry and auto-peering. For telemetry, it's used to distinguish between the different instances pushing data to the telemetry collector. | Y |
|`INSTANCE_NAME`| String | Your Rafiki instance's name used to communicate for telemetry and auto-peering. For telemetry, it's used to distinguish between the different instances pushing data to the telemetry collector. | Y |
173
173
174
174
</div>
175
175
176
176
#### Optional
177
177
178
178
<divclass="overflow-table">
179
179
180
-
| Variable name | Type | Description |
181
-
| ------------- | ---- | ----------- |
182
-
|`ENABLE_TELEMETRY`| Boolean | Enables the telemetry service on Rafiki. Defaults to `true`. |
183
-
|`LIVENET`| Boolean | Determines where to send metrics. Defaults to `false`, resulting in metrics being sent to the testnet OTEL Collector. <p>Set to `true` on production environments dealing with real money.</p> |
184
-
|`OPEN_TELEMETRY_COLLECTOR_URLS`| String | A CSV of URLs for OTEL Collectors (e.g., `http://otel-collector-NLB-e3172ff9d2f4bc8a.elb.eu-west-2.amazonaws.com:4317,http://happy-life-otel-collector:4317`). |
185
-
|`OPEN_TELEMETRY_EXPORT_INTERVAL`| Number | Indicates, in milliseconds, how often the instrumented Rafiki instance should send metrics. Defaults to`15000`. |
186
-
|`TELEMETRY_EXCHANGE_RATES_URL`| String | <p>Defines the endpoint Rafiki will query for exchange rates. Used as a fallback if/when [exchange rates](/integration/requirements/exchange-rates) aren’t provided.</p><p>When set, the response format of the external exchange rates API should be of type `rates`, as is expected by the rate service.</p><p>Defaults to `https://telemetry-exchange-rates.s3.amazonaws.com/exchange-rates-usd.json`, which points to a public S3 that has the previously mentioned required format, updated daily.</p> |
|`ENABLE_TELEMETRY`| Boolean | Enables the telemetry service on Rafiki. Defaults to `true`.|
183
+
|`LIVENET`| Boolean | Determines where to send metrics. Defaults to `false`, resulting in metrics being sent to the testnet OTEL Collector. <p>Set to `true` on production environments dealing with real money.</p>|
184
+
|`OPEN_TELEMETRY_COLLECTOR_URLS`| String | A CSV of URLs for OTEL Collectors (e.g., `http://otel-collector-NLB-e3172ff9d2f4bc8a.elb.eu-west-2.amazonaws.com:4317,http://happy-life-otel-collector:4317`).|
185
+
|`OPEN_TELEMETRY_EXPORT_INTERVAL`| Number | Indicates, in milliseconds, how often the instrumented Rafiki instance should send metrics. Defaults to`15000`.|
186
+
|`TELEMETRY_EXCHANGE_RATES_URL`| String| <p>Defines the endpoint Rafiki will query for exchange rates. Used as a fallback if/when [exchange rates](/integration/requirements/exchange-rates) aren’t provided.</p><p>When set, the response format of the external exchange rates API should be of type `rates`, as is expected by the rate service.</p><p>Defaults to `https://telemetry-exchange-rates.s3.amazonaws.com/exchange-rates-usd.json`, which points to a public S3 that has the previously mentioned required format, updated daily.</p> |
Copy file name to clipboardexpand all lines: packages/documentation/src/content/docs/resources/glossary.mdx
+5-6
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ An API standard and a set of APIs that allows clients to securely retrieve accou
62
62
63
63
## Outgoing payment
64
64
65
-
An object created by the sender’s ASE, on their resource server, that represents a payment being sent. This object contains information about the outgoing payment, such as the amount, currency, receiver’s wallet address, and payment status.
65
+
An object created by the sender’s ASE, on their resource server, that represents a payment being sent. This object contains information about the outgoing payment, such as the amount, currency, receiver’s wallet address, and payment status.
66
66
67
67
## Payment pointer
68
68
@@ -78,21 +78,20 @@ An object created by the sender’s ASE, on their resource server, that represen
78
78
79
79
## Resource server
80
80
81
-
A server that hosts and manages access to protected Open Payments resources for incoming payments, quotes, and outgoing payments.
81
+
A server that hosts and manages access to protected Open Payments resources for incoming payments, quotes, and outgoing payments.
82
82
83
83
Rafiki's `backend` service runs an Open Payments resource server.
84
84
85
85
## Simple Payment Setup Protocol (SPSP)
86
86
87
-
An Interledger application layer protocol for exchanging payment information between two counterparties to facilitate direct payments over Interledger. The information is then used to set up a STREAM connection. You can read more about SPSP in its <LinkOuthref="https://interledger.org/developers/rfcs/simple-payment-setup-protocol/">specification
88
-
</LinkOut>.
87
+
An Interledger application layer protocol for exchanging payment information between two counterparties to facilitate direct payments over Interledger. The information is then used to set up a STREAM connection. You can read more about SPSP in its <LinkOuthref="https://interledger.org/developers/rfcs/simple-payment-setup-protocol/">specification</LinkOut>.
89
88
90
89
## Streaming Transport for the Real-Time Exchange of Assets and Messages (STREAM)
91
90
92
91
An Interledger transport layer protocol for sending and receiving authenticated ILP packets between peers and determining the path exchange rate. See the <LinkOuthref="https://interledger.org/developers/rfcs/stream-protocol/">STREAM specification</LinkOut> for more information.
93
92
94
93
## Wallet address
95
94
96
-
A secure, unique URL that identifies an Open Payments-enabled account. It acts as an entry point to the Open Payments APIs, facilitating interactions like sending and receiving payments.
95
+
A secure, unique URL that identifies an Open Payments-enabled account. It acts as an entry point to the Open Payments APIs, facilitating interactions like sending and receiving payments.
97
96
98
-
A wallet address is publicly shareable and used to interact with the underlying payment account without compromising its security. Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.
97
+
A wallet address is publicly shareable and used to interact with the underlying payment account without compromising its security. Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.
0 commit comments