@compass-labs/api-sdk 2.2.89-rc.0 → 2.2.90-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsMarkets.d.ts +5 -5
  2. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsMarkets.js +5 -5
  3. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsTransactBuy.d.ts +8 -8
  4. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsTransactBuy.js +8 -8
  5. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsTransactSell.d.ts +9 -9
  6. package/dist/commonjs/funcs/tokenizedAssetsTokenizedAssetsTransactSell.js +9 -9
  7. package/dist/commonjs/sdk/tokenizedassets.d.ts +24 -24
  8. package/dist/commonjs/sdk/tokenizedassets.js +24 -24
  9. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsMarkets.d.ts +5 -5
  10. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsMarkets.js +5 -5
  11. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsTransactBuy.d.ts +8 -8
  12. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsTransactBuy.js +8 -8
  13. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsTransactSell.d.ts +9 -9
  14. package/dist/esm/funcs/tokenizedAssetsTokenizedAssetsTransactSell.js +9 -9
  15. package/dist/esm/sdk/tokenizedassets.d.ts +24 -24
  16. package/dist/esm/sdk/tokenizedassets.js +24 -24
  17. package/docs/sdks/tokenizedassets/README.md +22 -22
  18. package/openapi_prepped_for_speakeasy.json +8 -8
  19. package/package.json +1 -1
  20. package/src/funcs/tokenizedAssetsTokenizedAssetsMarkets.ts +5 -5
  21. package/src/funcs/tokenizedAssetsTokenizedAssetsTransactBuy.ts +8 -8
  22. package/src/funcs/tokenizedAssetsTokenizedAssetsTransactSell.ts +9 -9
  23. package/src/sdk/tokenizedassets.ts +24 -24
@@ -15,11 +15,11 @@ import { Result } from "../types/fp.js";
15
15
  * @remarks
16
16
  * List the tradable tokenized-asset catalog.
17
17
  *
18
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
19
- * yield tokens), and IXS (managed vaults) into a single list with live USD
20
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
21
- * or chain, and narrow the results with a sector `category` or free-text
22
- * `search`.
18
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
19
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
20
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
21
+ * Filter by provider, asset class, or chain, and narrow the results with a
22
+ * sector `category` or free-text `search`.
23
23
  */
24
24
  export declare function tokenizedAssetsTokenizedAssetsMarkets(client: CompassApiSDKCore, request: operations.V2TokenizedAssetsMarketsRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsMarketsListResponse, errors.HTTPValidationError | errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
25
25
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsMarkets.d.ts.map
@@ -54,11 +54,11 @@ const async_js_1 = require("../types/async.js");
54
54
  * @remarks
55
55
  * List the tradable tokenized-asset catalog.
56
56
  *
57
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
58
- * yield tokens), and IXS (managed vaults) into a single list with live USD
59
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
60
- * or chain, and narrow the results with a sector `category` or free-text
61
- * `search`.
57
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
58
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
59
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
60
+ * Filter by provider, asset class, or chain, and narrow the results with a
61
+ * sector `category` or free-text `search`.
62
62
  */
63
63
  function tokenizedAssetsTokenizedAssetsMarkets(client, request, options) {
64
64
  return new async_js_1.APIPromise($do(client, request, options));
@@ -12,15 +12,15 @@ import { Result } from "../types/fp.js";
12
12
  * Buy an RWA yield token
13
13
  *
14
14
  * @remarks
15
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
16
- * in one transaction.
15
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
16
+ * deRWA token, with a stablecoin in one transaction.
17
17
  *
18
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
19
- * **vault address** (its shares aren't a registered symbol). The account spends
20
- * a stablecoin it already holds (fund it with a plain transfer first) and
21
- * settles inside the product account — an unsigned transaction the owner signs,
22
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
23
- * order flow (`/quote`, `/order`).
18
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
19
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
20
+ * registered symbol). The account spends a stablecoin it already holds (fund it
21
+ * with a plain transfer first) and settles inside the product account — an
22
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
23
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
24
24
  */
25
25
  export declare function tokenizedAssetsTokenizedAssetsTransactBuy(client: CompassApiSDKCore, request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsTradeResponse, errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
26
26
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsTransactBuy.d.ts.map
@@ -51,15 +51,15 @@ const async_js_1 = require("../types/async.js");
51
51
  * Buy an RWA yield token
52
52
  *
53
53
  * @remarks
54
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
55
- * in one transaction.
54
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
55
+ * deRWA token, with a stablecoin in one transaction.
56
56
  *
57
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
58
- * **vault address** (its shares aren't a registered symbol). The account spends
59
- * a stablecoin it already holds (fund it with a plain transfer first) and
60
- * settles inside the product account — an unsigned transaction the owner signs,
61
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
62
- * order flow (`/quote`, `/order`).
57
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
58
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
59
+ * registered symbol). The account spends a stablecoin it already holds (fund it
60
+ * with a plain transfer first) and settles inside the product account — an
61
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
62
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
63
63
  */
64
64
  function tokenizedAssetsTokenizedAssetsTransactBuy(client, request, options) {
65
65
  return new async_js_1.APIPromise($do(client, request, options));
@@ -12,16 +12,16 @@ import { Result } from "../types/fp.js";
12
12
  * Sell an RWA yield token
13
13
  *
14
14
  * @remarks
15
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
16
- * stablecoin.
15
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
16
+ * deRWA token, back to a stablecoin.
17
17
  *
18
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
19
- * **vault address**. A Midas redemption is instant and settles in the same
20
- * transaction; an IXS redemption is **asynchronous** it files a
21
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
22
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
23
- * transaction executes inside the product account (owner signs, or EIP-712 with
24
- * `gas_sponsorship`).
18
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
19
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
20
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
21
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
22
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
23
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
24
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
25
25
  */
26
26
  export declare function tokenizedAssetsTokenizedAssetsTransactSell(client: CompassApiSDKCore, request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsTradeResponse, errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
27
27
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsTransactSell.d.ts.map
@@ -51,16 +51,16 @@ const async_js_1 = require("../types/async.js");
51
51
  * Sell an RWA yield token
52
52
  *
53
53
  * @remarks
54
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
55
- * stablecoin.
54
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
55
+ * deRWA token, back to a stablecoin.
56
56
  *
57
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
58
- * **vault address**. A Midas redemption is instant and settles in the same
59
- * transaction; an IXS redemption is **asynchronous** it files a
60
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
61
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
62
- * transaction executes inside the product account (owner signs, or EIP-712 with
63
- * `gas_sponsorship`).
57
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
58
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
59
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
60
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
61
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
62
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
63
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
64
64
  */
65
65
  function tokenizedAssetsTokenizedAssetsTransactSell(client, request, options) {
66
66
  return new async_js_1.APIPromise($do(client, request, options));
@@ -8,11 +8,11 @@ export declare class TokenizedAssets extends ClientSDK {
8
8
  * @remarks
9
9
  * List the tradable tokenized-asset catalog.
10
10
  *
11
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
12
- * yield tokens), and IXS (managed vaults) into a single list with live USD
13
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
14
- * or chain, and narrow the results with a sector `category` or free-text
15
- * `search`.
11
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
12
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
13
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
14
+ * Filter by provider, asset class, or chain, and narrow the results with a
15
+ * sector `category` or free-text `search`.
16
16
  */
17
17
  tokenizedAssetsMarkets(request: operations.V2TokenizedAssetsMarketsRequest, options?: RequestOptions): Promise<components.TokenizedAssetsMarketsListResponse>;
18
18
  /**
@@ -174,31 +174,31 @@ export declare class TokenizedAssets extends ClientSDK {
174
174
  * Buy an RWA yield token
175
175
  *
176
176
  * @remarks
177
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
178
- * in one transaction.
179
- *
180
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
181
- * **vault address** (its shares aren't a registered symbol). The account spends
182
- * a stablecoin it already holds (fund it with a plain transfer first) and
183
- * settles inside the product account — an unsigned transaction the owner signs,
184
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
185
- * order flow (`/quote`, `/order`).
177
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
178
+ * deRWA token, with a stablecoin in one transaction.
179
+ *
180
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
181
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
182
+ * registered symbol). The account spends a stablecoin it already holds (fund it
183
+ * with a plain transfer first) and settles inside the product account — an
184
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
185
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
186
186
  */
187
187
  tokenizedAssetsTransactBuy(request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): Promise<components.TokenizedAssetsTradeResponse>;
188
188
  /**
189
189
  * Sell an RWA yield token
190
190
  *
191
191
  * @remarks
192
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
193
- * stablecoin.
194
- *
195
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
196
- * **vault address**. A Midas redemption is instant and settles in the same
197
- * transaction; an IXS redemption is **asynchronous** it files a
198
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
199
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
200
- * transaction executes inside the product account (owner signs, or EIP-712 with
201
- * `gas_sponsorship`).
192
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
193
+ * deRWA token, back to a stablecoin.
194
+ *
195
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
196
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
197
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
198
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
199
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
200
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
201
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
202
202
  */
203
203
  tokenizedAssetsTransactSell(request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): Promise<components.TokenizedAssetsTradeResponse>;
204
204
  }
@@ -28,11 +28,11 @@ class TokenizedAssets extends sdks_js_1.ClientSDK {
28
28
  * @remarks
29
29
  * List the tradable tokenized-asset catalog.
30
30
  *
31
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
32
- * yield tokens), and IXS (managed vaults) into a single list with live USD
33
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
34
- * or chain, and narrow the results with a sector `category` or free-text
35
- * `search`.
31
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
32
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
33
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
34
+ * Filter by provider, asset class, or chain, and narrow the results with a
35
+ * sector `category` or free-text `search`.
36
36
  */
37
37
  async tokenizedAssetsMarkets(request, options) {
38
38
  return (0, fp_js_1.unwrapAsync)((0, tokenizedAssetsTokenizedAssetsMarkets_js_1.tokenizedAssetsTokenizedAssetsMarkets)(this, request, options));
@@ -220,15 +220,15 @@ class TokenizedAssets extends sdks_js_1.ClientSDK {
220
220
  * Buy an RWA yield token
221
221
  *
222
222
  * @remarks
223
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
224
- * in one transaction.
225
- *
226
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
227
- * **vault address** (its shares aren't a registered symbol). The account spends
228
- * a stablecoin it already holds (fund it with a plain transfer first) and
229
- * settles inside the product account — an unsigned transaction the owner signs,
230
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
231
- * order flow (`/quote`, `/order`).
223
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
224
+ * deRWA token, with a stablecoin in one transaction.
225
+ *
226
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
227
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
228
+ * registered symbol). The account spends a stablecoin it already holds (fund it
229
+ * with a plain transfer first) and settles inside the product account — an
230
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
231
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
232
232
  */
233
233
  async tokenizedAssetsTransactBuy(request, options) {
234
234
  return (0, fp_js_1.unwrapAsync)((0, tokenizedAssetsTokenizedAssetsTransactBuy_js_1.tokenizedAssetsTokenizedAssetsTransactBuy)(this, request, options));
@@ -237,16 +237,16 @@ class TokenizedAssets extends sdks_js_1.ClientSDK {
237
237
  * Sell an RWA yield token
238
238
  *
239
239
  * @remarks
240
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
241
- * stablecoin.
242
- *
243
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
244
- * **vault address**. A Midas redemption is instant and settles in the same
245
- * transaction; an IXS redemption is **asynchronous** it files a
246
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
247
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
248
- * transaction executes inside the product account (owner signs, or EIP-712 with
249
- * `gas_sponsorship`).
240
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
241
+ * deRWA token, back to a stablecoin.
242
+ *
243
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
244
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
245
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
246
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
247
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
248
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
249
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
250
250
  */
251
251
  async tokenizedAssetsTransactSell(request, options) {
252
252
  return (0, fp_js_1.unwrapAsync)((0, tokenizedAssetsTokenizedAssetsTransactSell_js_1.tokenizedAssetsTokenizedAssetsTransactSell)(this, request, options));
@@ -15,11 +15,11 @@ import { Result } from "../types/fp.js";
15
15
  * @remarks
16
16
  * List the tradable tokenized-asset catalog.
17
17
  *
18
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
19
- * yield tokens), and IXS (managed vaults) into a single list with live USD
20
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
21
- * or chain, and narrow the results with a sector `category` or free-text
22
- * `search`.
18
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
19
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
20
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
21
+ * Filter by provider, asset class, or chain, and narrow the results with a
22
+ * sector `category` or free-text `search`.
23
23
  */
24
24
  export declare function tokenizedAssetsTokenizedAssetsMarkets(client: CompassApiSDKCore, request: operations.V2TokenizedAssetsMarketsRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsMarketsListResponse, errors.HTTPValidationError | errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
25
25
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsMarkets.d.ts.map
@@ -18,11 +18,11 @@ import { APIPromise } from "../types/async.js";
18
18
  * @remarks
19
19
  * List the tradable tokenized-asset catalog.
20
20
  *
21
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
22
- * yield tokens), and IXS (managed vaults) into a single list with live USD
23
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
24
- * or chain, and narrow the results with a sector `category` or free-text
25
- * `search`.
21
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
22
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
23
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
24
+ * Filter by provider, asset class, or chain, and narrow the results with a
25
+ * sector `category` or free-text `search`.
26
26
  */
27
27
  export function tokenizedAssetsTokenizedAssetsMarkets(client, request, options) {
28
28
  return new APIPromise($do(client, request, options));
@@ -12,15 +12,15 @@ import { Result } from "../types/fp.js";
12
12
  * Buy an RWA yield token
13
13
  *
14
14
  * @remarks
15
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
16
- * in one transaction.
15
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
16
+ * deRWA token, with a stablecoin in one transaction.
17
17
  *
18
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
19
- * **vault address** (its shares aren't a registered symbol). The account spends
20
- * a stablecoin it already holds (fund it with a plain transfer first) and
21
- * settles inside the product account — an unsigned transaction the owner signs,
22
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
23
- * order flow (`/quote`, `/order`).
18
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
19
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
20
+ * registered symbol). The account spends a stablecoin it already holds (fund it
21
+ * with a plain transfer first) and settles inside the product account — an
22
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
23
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
24
24
  */
25
25
  export declare function tokenizedAssetsTokenizedAssetsTransactBuy(client: CompassApiSDKCore, request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsTradeResponse, errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
26
26
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsTransactBuy.d.ts.map
@@ -15,15 +15,15 @@ import { APIPromise } from "../types/async.js";
15
15
  * Buy an RWA yield token
16
16
  *
17
17
  * @remarks
18
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
19
- * in one transaction.
18
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
19
+ * deRWA token, with a stablecoin in one transaction.
20
20
  *
21
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
22
- * **vault address** (its shares aren't a registered symbol). The account spends
23
- * a stablecoin it already holds (fund it with a plain transfer first) and
24
- * settles inside the product account — an unsigned transaction the owner signs,
25
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
26
- * order flow (`/quote`, `/order`).
21
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
22
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
23
+ * registered symbol). The account spends a stablecoin it already holds (fund it
24
+ * with a plain transfer first) and settles inside the product account — an
25
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
26
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
27
27
  */
28
28
  export function tokenizedAssetsTokenizedAssetsTransactBuy(client, request, options) {
29
29
  return new APIPromise($do(client, request, options));
@@ -12,16 +12,16 @@ import { Result } from "../types/fp.js";
12
12
  * Sell an RWA yield token
13
13
  *
14
14
  * @remarks
15
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
16
- * stablecoin.
15
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
16
+ * deRWA token, back to a stablecoin.
17
17
  *
18
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
19
- * **vault address**. A Midas redemption is instant and settles in the same
20
- * transaction; an IXS redemption is **asynchronous** it files a
21
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
22
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
23
- * transaction executes inside the product account (owner signs, or EIP-712 with
24
- * `gas_sponsorship`).
18
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
19
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
20
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
21
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
22
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
23
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
24
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
25
25
  */
26
26
  export declare function tokenizedAssetsTokenizedAssetsTransactSell(client: CompassApiSDKCore, request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): APIPromise<Result<components.TokenizedAssetsTradeResponse, errors.TokenizedAssetsErrorResponse | CompassAPISDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
27
27
  //# sourceMappingURL=tokenizedAssetsTokenizedAssetsTransactSell.d.ts.map
@@ -15,16 +15,16 @@ import { APIPromise } from "../types/async.js";
15
15
  * Sell an RWA yield token
16
16
  *
17
17
  * @remarks
18
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
19
- * stablecoin.
18
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
19
+ * deRWA token, back to a stablecoin.
20
20
  *
21
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
22
- * **vault address**. A Midas redemption is instant and settles in the same
23
- * transaction; an IXS redemption is **asynchronous** it files a
24
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
25
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
26
- * transaction executes inside the product account (owner signs, or EIP-712 with
27
- * `gas_sponsorship`).
21
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
22
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
23
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
24
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
25
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
26
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
27
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
28
28
  */
29
29
  export function tokenizedAssetsTokenizedAssetsTransactSell(client, request, options) {
30
30
  return new APIPromise($do(client, request, options));
@@ -8,11 +8,11 @@ export declare class TokenizedAssets extends ClientSDK {
8
8
  * @remarks
9
9
  * List the tradable tokenized-asset catalog.
10
10
  *
11
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
12
- * yield tokens), and IXS (managed vaults) into a single list with live USD
13
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
14
- * or chain, and narrow the results with a sector `category` or free-text
15
- * `search`.
11
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
12
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
13
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
14
+ * Filter by provider, asset class, or chain, and narrow the results with a
15
+ * sector `category` or free-text `search`.
16
16
  */
17
17
  tokenizedAssetsMarkets(request: operations.V2TokenizedAssetsMarketsRequest, options?: RequestOptions): Promise<components.TokenizedAssetsMarketsListResponse>;
18
18
  /**
@@ -174,31 +174,31 @@ export declare class TokenizedAssets extends ClientSDK {
174
174
  * Buy an RWA yield token
175
175
  *
176
176
  * @remarks
177
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
178
- * in one transaction.
179
- *
180
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
181
- * **vault address** (its shares aren't a registered symbol). The account spends
182
- * a stablecoin it already holds (fund it with a plain transfer first) and
183
- * settles inside the product account — an unsigned transaction the owner signs,
184
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
185
- * order flow (`/quote`, `/order`).
177
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
178
+ * deRWA token, with a stablecoin in one transaction.
179
+ *
180
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
181
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
182
+ * registered symbol). The account spends a stablecoin it already holds (fund it
183
+ * with a plain transfer first) and settles inside the product account — an
184
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
185
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
186
186
  */
187
187
  tokenizedAssetsTransactBuy(request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): Promise<components.TokenizedAssetsTradeResponse>;
188
188
  /**
189
189
  * Sell an RWA yield token
190
190
  *
191
191
  * @remarks
192
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
193
- * stablecoin.
194
- *
195
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
196
- * **vault address**. A Midas redemption is instant and settles in the same
197
- * transaction; an IXS redemption is **asynchronous** it files a
198
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
199
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
200
- * transaction executes inside the product account (owner signs, or EIP-712 with
201
- * `gas_sponsorship`).
192
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
193
+ * deRWA token, back to a stablecoin.
194
+ *
195
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
196
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
197
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
198
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
199
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
200
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
201
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
202
202
  */
203
203
  tokenizedAssetsTransactSell(request: components.TokenizedAssetsTradeRequest, options?: RequestOptions): Promise<components.TokenizedAssetsTradeResponse>;
204
204
  }
@@ -25,11 +25,11 @@ export class TokenizedAssets extends ClientSDK {
25
25
  * @remarks
26
26
  * List the tradable tokenized-asset catalog.
27
27
  *
28
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
29
- * yield tokens), and IXS (managed vaults) into a single list with live USD
30
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
31
- * or chain, and narrow the results with a sector `category` or free-text
32
- * `search`.
28
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
29
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
30
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
31
+ * Filter by provider, asset class, or chain, and narrow the results with a
32
+ * sector `category` or free-text `search`.
33
33
  */
34
34
  async tokenizedAssetsMarkets(request, options) {
35
35
  return unwrapAsync(tokenizedAssetsTokenizedAssetsMarkets(this, request, options));
@@ -217,15 +217,15 @@ export class TokenizedAssets extends ClientSDK {
217
217
  * Buy an RWA yield token
218
218
  *
219
219
  * @remarks
220
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
221
- * in one transaction.
222
- *
223
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
224
- * **vault address** (its shares aren't a registered symbol). The account spends
225
- * a stablecoin it already holds (fund it with a plain transfer first) and
226
- * settles inside the product account — an unsigned transaction the owner signs,
227
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
228
- * order flow (`/quote`, `/order`).
220
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
221
+ * deRWA token, with a stablecoin in one transaction.
222
+ *
223
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
224
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
225
+ * registered symbol). The account spends a stablecoin it already holds (fund it
226
+ * with a plain transfer first) and settles inside the product account — an
227
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
228
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
229
229
  */
230
230
  async tokenizedAssetsTransactBuy(request, options) {
231
231
  return unwrapAsync(tokenizedAssetsTokenizedAssetsTransactBuy(this, request, options));
@@ -234,16 +234,16 @@ export class TokenizedAssets extends ClientSDK {
234
234
  * Sell an RWA yield token
235
235
  *
236
236
  * @remarks
237
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
238
- * stablecoin.
239
- *
240
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
241
- * **vault address**. A Midas redemption is instant and settles in the same
242
- * transaction; an IXS redemption is **asynchronous** it files a
243
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
244
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
245
- * transaction executes inside the product account (owner signs, or EIP-712 with
246
- * `gas_sponsorship`).
237
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
238
+ * deRWA token, back to a stablecoin.
239
+ *
240
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
241
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
242
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
243
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
244
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
245
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
246
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
247
247
  */
248
248
  async tokenizedAssetsTransactSell(request, options) {
249
249
  return unwrapAsync(tokenizedAssetsTokenizedAssetsTransactSell(this, request, options));
@@ -24,11 +24,11 @@
24
24
 
25
25
  List the tradable tokenized-asset catalog.
26
26
 
27
- Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
28
- yield tokens), and IXS (managed vaults) into a single list with live USD
29
- pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
30
- or chain, and narrow the results with a sector `category` or free-text
31
- `search`.
27
+ Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
28
+ yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
29
+ a single list with live USD pricing, plus APY and TVL for yield assets.
30
+ Filter by provider, asset class, or chain, and narrow the results with a
31
+ sector `category` or free-text `search`.
32
32
 
33
33
  ### Example Usage
34
34
 
@@ -1133,15 +1133,15 @@ run();
1133
1133
 
1134
1134
  ## tokenizedAssetsTransactBuy
1135
1135
 
1136
- Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
1137
- in one transaction.
1136
+ Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
1137
+ deRWA token, with a stablecoin in one transaction.
1138
1138
 
1139
- Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
1140
- **vault address** (its shares aren't a registered symbol). The account spends
1141
- a stablecoin it already holds (fund it with a plain transfer first) and
1142
- settles inside the product account — an unsigned transaction the owner signs,
1143
- or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
1144
- order flow (`/quote`, `/order`).
1139
+ Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
1140
+ deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
1141
+ registered symbol). The account spends a stablecoin it already holds (fund it
1142
+ with a plain transfer first) and settles inside the product account — an
1143
+ unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
1144
+ three settle instantly. Equities use the order flow (`/quote`, `/order`).
1145
1145
 
1146
1146
  ### Example Usage
1147
1147
 
@@ -1237,16 +1237,16 @@ run();
1237
1237
 
1238
1238
  ## tokenizedAssetsTransactSell
1239
1239
 
1240
- Sell an RWA yield token, or redeem from an IXS managed vault, back to a
1241
- stablecoin.
1240
+ Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
1241
+ deRWA token, back to a stablecoin.
1242
1242
 
1243
- Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
1244
- **vault address**. A Midas redemption is instant and settles in the same
1245
- transaction; an IXS redemption is **asynchronous** it files a
1246
- `requestRedeem` (`settlement: async`) the vault operator settles off-chain
1247
- later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
1248
- transaction executes inside the product account (owner signs, or EIP-712 with
1249
- `gas_sponsorship`).
1243
+ Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
1244
+ deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
1245
+ and Centrifuge deRWA swaps are instant and settle in the same transaction; an
1246
+ IXS redemption is **asynchronous** it files a `requestRedeem`
1247
+ (`settlement: async`) the vault operator settles off-chain later, so poll
1248
+ `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
1249
+ inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
1250
1250
 
1251
1251
  ### Example Usage
1252
1252
 
@@ -7422,7 +7422,7 @@
7422
7422
  "Tokenized Assets"
7423
7423
  ],
7424
7424
  "summary": "List markets",
7425
- "description": "List the tradable tokenized-asset catalog.\n\nAggregates all three providers \u2014 Ondo (tokenized US equities), Midas (RWA\nyield tokens), and IXS (managed vaults) \u2014 into a single list with live USD\npricing, plus APY and TVL for yield assets. Filter by provider, asset class,\nor chain, and narrow the results with a sector `category` or free-text\n`search`.",
7425
+ "description": "List the tradable tokenized-asset catalog.\n\nAggregates all four providers \u2014 Ondo (tokenized US equities), Midas (RWA\nyield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) \u2014 into\na single list with live USD pricing, plus APY and TVL for yield assets.\nFilter by provider, asset class, or chain, and narrow the results with a\nsector `category` or free-text `search`.",
7426
7426
  "operationId": "v2_tokenized_assets_markets",
7427
7427
  "parameters": [
7428
7428
  {
@@ -8488,7 +8488,7 @@
8488
8488
  "Tokenized Assets"
8489
8489
  ],
8490
8490
  "summary": "Buy an RWA yield token",
8491
- "description": "Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin\nin one transaction.\n\nSet `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS\n**vault address** (its shares aren't a registered symbol). The account spends\na stablecoin it already holds (fund it with a plain transfer first) and\nsettles inside the product account \u2014 an unsigned transaction the owner signs,\nor EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the\norder flow (`/quote`, `/order`).",
8491
+ "description": "Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge\ndeRWA token, with a stablecoin in one transaction.\n\nSet `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge\ndeRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a\nregistered symbol). The account spends a stablecoin it already holds (fund it\nwith a plain transfer first) and settles inside the product account \u2014 an\nunsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All\nthree settle instantly. Equities use the order flow (`/quote`, `/order`).",
8492
8492
  "operationId": "v2_tokenized_assets_transact_buy",
8493
8493
  "requestBody": {
8494
8494
  "content": {
@@ -8531,7 +8531,7 @@
8531
8531
  "Tokenized Assets"
8532
8532
  ],
8533
8533
  "summary": "Sell an RWA yield token",
8534
- "description": "Sell an RWA yield token, or redeem from an IXS managed vault, back to a\nstablecoin.\n\nSet `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS\n**vault address**. A Midas redemption is instant and settles in the same\ntransaction; an IXS redemption is **asynchronous** \u2014 it files a\n`requestRedeem` (`settlement: async`) the vault operator settles off-chain\nlater, so poll `GET /v2/tokenized_assets/redemptions` for status. The\ntransaction executes inside the product account (owner signs, or EIP-712 with\n`gas_sponsorship`).",
8534
+ "description": "Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge\ndeRWA token, back to a stablecoin.\n\nSet `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge\ndeRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions\nand Centrifuge deRWA swaps are instant and settle in the same transaction; an\nIXS redemption is **asynchronous** \u2014 it files a `requestRedeem`\n(`settlement: async`) the vault operator settles off-chain later, so poll\n`GET /v2/tokenized_assets/redemptions` for status. The transaction executes\ninside the product account (owner signs, or EIP-712 with `gas_sponsorship`).",
8535
8535
  "operationId": "v2_tokenized_assets_transact_sell",
8536
8536
  "requestBody": {
8537
8537
  "content": {
@@ -18500,11 +18500,11 @@
18500
18500
  },
18501
18501
  "provider": {
18502
18502
  "$ref": "#/components/schemas/TokenizedAssetProvider",
18503
- "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield, 'ixs' managed vaults)."
18503
+ "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield, 'ixs' managed vaults, 'centrifuge' deRWA)."
18504
18504
  },
18505
18505
  "asset_class": {
18506
18506
  "$ref": "#/components/schemas/TokenizedAssetClass",
18507
- "description": "Asset class. EQUITY trades via the order endpoints; the RWA yield classes and MANAGED_VAULT trade via transact/buy and transact/sell."
18507
+ "description": "Asset class. EQUITY trades via the order endpoints; the RWA yield classes, MANAGED_VAULT, and DERWA trade via transact/buy and transact/sell."
18508
18508
  },
18509
18509
  "chain": {
18510
18510
  "$ref": "#/components/schemas/Chain",
@@ -30456,11 +30456,11 @@
30456
30456
  },
30457
30457
  "provider": {
30458
30458
  "$ref": "#/components/schemas/TokenizedAssetProvider",
30459
- "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield, 'ixs' managed vaults)."
30459
+ "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield, 'ixs' managed vaults, 'centrifuge' deRWA)."
30460
30460
  },
30461
30461
  "asset_class": {
30462
30462
  "$ref": "#/components/schemas/TokenizedAssetClass",
30463
- "description": "Asset class. EQUITY trades via the order endpoints; the RWA yield classes and MANAGED_VAULT trade via transact/buy and transact/sell."
30463
+ "description": "Asset class. EQUITY trades via the order endpoints; the RWA yield classes, MANAGED_VAULT, and DERWA trade via transact/buy and transact/sell."
30464
30464
  },
30465
30465
  "chain": {
30466
30466
  "$ref": "#/components/schemas/Chain",
@@ -30596,7 +30596,7 @@
30596
30596
  },
30597
30597
  "provider": {
30598
30598
  "$ref": "#/components/schemas/TokenizedAssetProvider",
30599
- "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield).",
30599
+ "description": "Issuer of this tokenized asset ('ondo' equities, 'midas' RWA yield, 'ixs' managed vaults, 'centrifuge' deRWA).",
30600
30600
  "example": "ondo"
30601
30601
  },
30602
30602
  "asset_class": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compass-labs/api-sdk",
3
- "version": "2.2.89-rc.0",
3
+ "version": "2.2.90-rc.0",
4
4
  "author": "royalnine",
5
5
  "type": "module",
6
6
  "tshy": {
@@ -33,11 +33,11 @@ import { Result } from "../types/fp.js";
33
33
  * @remarks
34
34
  * List the tradable tokenized-asset catalog.
35
35
  *
36
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
37
- * yield tokens), and IXS (managed vaults) into a single list with live USD
38
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
39
- * or chain, and narrow the results with a sector `category` or free-text
40
- * `search`.
36
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
37
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
38
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
39
+ * Filter by provider, asset class, or chain, and narrow the results with a
40
+ * sector `category` or free-text `search`.
41
41
  */
42
42
  export function tokenizedAssetsTokenizedAssetsMarkets(
43
43
  client: CompassApiSDKCore,
@@ -30,15 +30,15 @@ import { Result } from "../types/fp.js";
30
30
  * Buy an RWA yield token
31
31
  *
32
32
  * @remarks
33
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
34
- * in one transaction.
33
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
34
+ * deRWA token, with a stablecoin in one transaction.
35
35
  *
36
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
37
- * **vault address** (its shares aren't a registered symbol). The account spends
38
- * a stablecoin it already holds (fund it with a plain transfer first) and
39
- * settles inside the product account — an unsigned transaction the owner signs,
40
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
41
- * order flow (`/quote`, `/order`).
36
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
37
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
38
+ * registered symbol). The account spends a stablecoin it already holds (fund it
39
+ * with a plain transfer first) and settles inside the product account — an
40
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
41
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
42
42
  */
43
43
  export function tokenizedAssetsTokenizedAssetsTransactBuy(
44
44
  client: CompassApiSDKCore,
@@ -30,16 +30,16 @@ import { Result } from "../types/fp.js";
30
30
  * Sell an RWA yield token
31
31
  *
32
32
  * @remarks
33
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
34
- * stablecoin.
33
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
34
+ * deRWA token, back to a stablecoin.
35
35
  *
36
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
37
- * **vault address**. A Midas redemption is instant and settles in the same
38
- * transaction; an IXS redemption is **asynchronous** it files a
39
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
40
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
41
- * transaction executes inside the product account (owner signs, or EIP-712 with
42
- * `gas_sponsorship`).
36
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
37
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
38
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
39
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
40
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
41
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
42
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
43
43
  */
44
44
  export function tokenizedAssetsTokenizedAssetsTransactSell(
45
45
  client: CompassApiSDKCore,
@@ -29,11 +29,11 @@ export class TokenizedAssets extends ClientSDK {
29
29
  * @remarks
30
30
  * List the tradable tokenized-asset catalog.
31
31
  *
32
- * Aggregates all three providers — Ondo (tokenized US equities), Midas (RWA
33
- * yield tokens), and IXS (managed vaults) into a single list with live USD
34
- * pricing, plus APY and TVL for yield assets. Filter by provider, asset class,
35
- * or chain, and narrow the results with a sector `category` or free-text
36
- * `search`.
32
+ * Aggregates all four providers — Ondo (tokenized US equities), Midas (RWA
33
+ * yield tokens), IXS (managed vaults), and Centrifuge (deRWA wrappers) into
34
+ * a single list with live USD pricing, plus APY and TVL for yield assets.
35
+ * Filter by provider, asset class, or chain, and narrow the results with a
36
+ * sector `category` or free-text `search`.
37
37
  */
38
38
  async tokenizedAssetsMarkets(
39
39
  request: operations.V2TokenizedAssetsMarketsRequest,
@@ -325,15 +325,15 @@ export class TokenizedAssets extends ClientSDK {
325
325
  * Buy an RWA yield token
326
326
  *
327
327
  * @remarks
328
- * Buy an RWA yield token, or deposit into an IXS managed vault, with a stablecoin
329
- * in one transaction.
330
- *
331
- * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
332
- * **vault address** (its shares aren't a registered symbol). The account spends
333
- * a stablecoin it already holds (fund it with a plain transfer first) and
334
- * settles inside the product account — an unsigned transaction the owner signs,
335
- * or EIP-712 with `gas_sponsorship`. Both paths are instant. Equities use the
336
- * order flow (`/quote`, `/order`).
328
+ * Buy an RWA yield token, deposit into an IXS managed vault, or buy a Centrifuge
329
+ * deRWA token, with a stablecoin in one transaction.
330
+ *
331
+ * Set `token_out` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
332
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address** (its shares aren't a
333
+ * registered symbol). The account spends a stablecoin it already holds (fund it
334
+ * with a plain transfer first) and settles inside the product account — an
335
+ * unsigned transaction the owner signs, or EIP-712 with `gas_sponsorship`. All
336
+ * three settle instantly. Equities use the order flow (`/quote`, `/order`).
337
337
  */
338
338
  async tokenizedAssetsTransactBuy(
339
339
  request: components.TokenizedAssetsTradeRequest,
@@ -350,16 +350,16 @@ export class TokenizedAssets extends ClientSDK {
350
350
  * Sell an RWA yield token
351
351
  *
352
352
  * @remarks
353
- * Sell an RWA yield token, or redeem from an IXS managed vault, back to a
354
- * stablecoin.
355
- *
356
- * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`) or to an IXS
357
- * **vault address**. A Midas redemption is instant and settles in the same
358
- * transaction; an IXS redemption is **asynchronous** it files a
359
- * `requestRedeem` (`settlement: async`) the vault operator settles off-chain
360
- * later, so poll `GET /v2/tokenized_assets/redemptions` for status. The
361
- * transaction executes inside the product account (owner signs, or EIP-712 with
362
- * `gas_sponsorship`).
353
+ * Sell an RWA yield token, redeem from an IXS managed vault, or sell a Centrifuge
354
+ * deRWA token, back to a stablecoin.
355
+ *
356
+ * Set `token_in` to a Midas symbol (`mTBILL`, `mBASIS`, `mBTC`), a Centrifuge
357
+ * deRWA symbol (e.g. `deSPXA`), or an IXS **vault address**. Midas redemptions
358
+ * and Centrifuge deRWA swaps are instant and settle in the same transaction; an
359
+ * IXS redemption is **asynchronous** it files a `requestRedeem`
360
+ * (`settlement: async`) the vault operator settles off-chain later, so poll
361
+ * `GET /v2/tokenized_assets/redemptions` for status. The transaction executes
362
+ * inside the product account (owner signs, or EIP-712 with `gas_sponsorship`).
363
363
  */
364
364
  async tokenizedAssetsTransactSell(
365
365
  request: components.TokenizedAssetsTradeRequest,