Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save echennells/b57577b501b88620195c51b544892b12 to your computer and use it in GitHub Desktop.
Save echennells/b57577b501b88620195c51b544892b12 to your computer and use it in GitHub Desktop.
How to self-host mutiny wallet and use their signet
Build the https://github.com/MutinyWallet/mutiny-web docker container with the following environment variables:
# Add the ARG directives for build-time environment variables
ARG VITE_PROXY="/_services/proxy"
ARG VITE_STORAGE="/_services/vss/v2"
ARG VITE_SELFHOSTED="true"
ARG VITE_NETWORK="signet"
ARG VITE_ESPLORA="https://mutinynet.com/api"
ARG VITE_LSP="https://signet-lsp.mutinywallet.com"
ARG VITE_RGS="https://rgs.mutinynet.com/snapshot/"
ARG VITE_SUBSCRIPTIONS="https://subscriptions-staging.mutinywallet.com"
ARG VITE_FEEDBACK="https://feedback-staging.mutinywallet.com"
ARG VITE_SCORER="https://scorer-staging.mutinywallet.com"
ARG VITE_PRIMAL="https://primal-cache.mutinywallet.com/api"
ARG VITE_BLIND_AUTH="https://blind-auth-staging.mutinywallet.com"
ARG VITE_HERMES="https://signet.mutiny.plus"
Use https://github.com/MutinyWallet/mutiny-deploy , replace the "web" container image with the one you build in the previous step.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment