feat(lsd-fee): update lsd protocol fee account #277
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull-request-comments | |
on: | |
pull_request: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
issues: write | |
jobs: | |
pull-request-open: | |
runs-on: ubuntu-latest | |
steps: | |
- name: pull-request-stats | |
uses: flowwer-dev/pull-request-stats@master | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: pull-request-stats-run | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
reactions: "+1" | |
message: | | |
```shell | |
# run Composable node | |
nix run "github:ComposableFi/composable/${{ github.ref }}" --allow-import-from-derivation --extra-experimental-features "flakes nix-command" --no-sandbox --accept-flake-config --option sandbox relaxed | |
```` | |
```shell | |
# run local Picasso DevNet (for CosmWasm development) | |
nix run "github:ComposableFi/composable/${{ github.ref }}#devnet-picasso" --allow-import-from-derivation --extra-experimental-features "flakes nix-command" --no-sandbox --accept-flake-config --option sandbox relaxed | |
``` | |
```shell | |
# CosmWasm on Substrate CLI tool | |
nix run "github:ComposableFi/composable/${{ github.ref }}#ccw" --allow-import-from-derivation --extra-experimental-features "flakes nix-command" --no-sandbox --accept-flake-config --option sandbox relaxed | |
``` | |
```shell | |
# run cross chain devnet with Dotsama and Cosmos nodes | |
nix run "github:ComposableFi/composable/${{ github.ref }}#devnet-xc-fresh" --allow-import-from-derivation --extra-experimental-features "flakes nix-command" --no-sandbox --accept-flake-config --option sandbox relaxed | |
# or same with docker | |
nix build "github:ComposableFi/composable/${{ github.ref }}#devnet-xc-image" --allow-import-from-derivation --extra-experimental-features "flakes nix-command" --no-sandbox --accept-flake-config --option sandbox relaxed \ | |
&& docker load --input result && docker run -it --entrypoint bash devnet-xc:latest -c /bin/devnet-xc-fresh | |
``` | |
[About nix](https://docs.composable.finance/nix.html) |