diff --git a/instructions.md b/instructions.md index 8a73fc1..8851e5f 100644 --- a/instructions.md +++ b/instructions.md @@ -4,7 +4,6 @@ A simple and private Lightning P2P exchange you can use directly from StartOS. You can find a quick start guide, tutorial videos, and detailed documentation at [Learn RoboSats](https://learn.robosats.com/). ## Basic Use 1. Open RoboSats by using the `LAUNCH UI` button. -2. For the first time using RoboSats, you will be provided a robot token (a unique, transient identifier) - you can create as many of these as you'd like. -3. You can save this token on the RoboSats service config screen if you need to persist your session. +2. For the first time using RoboSats, you will be provided a robot token (a unique, transient identifier) - you can create as many of these as you'd like. -**Note: It is strongly recommended to use a new robot every time when using RoboSats.** \ No newline at end of file +**Note: Robots are saved in your "garage." It is strongly recommended to use a new robot every time you start a new exchange.** \ No newline at end of file diff --git a/manifest.yaml b/manifest.yaml index 4d3bd5c..44c4195 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -5,6 +5,7 @@ release-notes: | * Updated to v0.5.3-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.5.3-alpha) * IMPORTANT: Versions previous to v0.5.1 will no longer be compatible * Remove old naming conventions + * Remove redundant config option (replaced by Robot Garage in UI) license: mit wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper" upstream-repo: "https://github.com/Reckless-Satoshi/robosats" @@ -16,7 +17,7 @@ build: ["make"] # Human readable descriptors for the service. These are used throughout the StartOS user interface, primarily in the marketplace. description: # This is the first description visible to the user in the marketplace. - short: A simple and private bitcoin exchange + short: A simple and private p2p bitcoin exchange # This description will display with additional details in the service's individual marketplace page long: | RoboSats is a simple and private way to exchange bitcoin for national currencies. Robosats simplifies the peer-to-peer user experience and uses lightning hold invoices to minimize custody and trust requirements. The deterministically generated avatars help users stick to best privacy practices. @@ -40,13 +41,9 @@ main: health-checks: web-ui: name: Web Interface - success-message: The RoboSats UI is ready to visit in a web browser - type: script -config: - get: - type: script - set: + success-message: The RoboSats UI is ready type: script +config: ~ # properties: # type: script # This denotes any data, asset, or pointer volumes that should be connected when the "docker run" command is invoked diff --git a/scripts/procedures/getConfig.ts b/scripts/procedures/getConfig.ts index 97e43d7..5a3a62c 100644 --- a/scripts/procedures/getConfig.ts +++ b/scripts/procedures/getConfig.ts @@ -21,12 +21,4 @@ export const getConfig: T.ExpectedExports.getConfig = compat.getConfig({ "target": "lan-address", "interface": "main", }, - "rs-hash": { - "type": "string", - "name": "Robosats Unique Token", - "description": "This is just a place that you can store your unique token if you choose. This is the nym identity that is randomly generated at boot for you on each startup.", - "nullable": true, - "copyable": true, - "masked": false, - } });