diff --git a/17.md b/17.md index a51fd65a8..1a98f8154 100644 --- a/17.md +++ b/17.md @@ -71,11 +71,8 @@ Here, `subId` is a unique uuid generated by the wallet and allows the client to ```ts enum SubscriptionKind { - bolt11_melt_quote = "bolt11_melt_quote", - bolt11_mint_quote = "bolt11_mint_quote", - - bolt12_melt_quote = "bolt12_melt_quote", - bolt12_mint_quote = "bolt12_mint_quote", + melt_quote = "melt_quote", + mint_quote = "mint_quote", proof_state = "proof_state", } @@ -251,7 +248,7 @@ Mints signal websocket support via [NUT-06][06] using the following setting: } ``` -Here, `commands` is an array of the commands that the mint supports. A mint that supports all commands would return `["bolt11_mint_quote", "bolt11_melt_quote", "bolt12_mint_quote", "bolt12_melt_quote", "proof_state"]`. Supported commands are given for each method-unit pair. +Here, `commands` is an array of the commands that the mint supports. A mint that supports all commands for a given method-unit pair would return `["mint_quote", "melt_quote", "proof_state"]`. Supported commands are given for each method-unit pair. Example: @@ -263,8 +260,8 @@ Example: "method": "bolt11", "unit": "sat", "commands": [ - "bolt11_mint_quote", - "bolt11_melt_quote", + "mint_quote", + "melt_quote", "proof_state" ] },