Skip to main content
Module

x/subshell/subsh-deno

Substrate API playground in a Deno πŸ¦• repl, using polkadot-js extension as remote signer ✍️. Say goodbye to hardcoded mnemonics / seeds in dev scripts!πŸ‘‹
Go to Latest
File
#!/usr/bin/env bash
# not in dockerif [[ -z "$RUNNING_IN_DOCKER" ]]; then cd $(dirname $(realpath $0))fi
DENO=subshell
if [[ "$1" == cache ]]; then until $DENO run --unstable --compat -A cache.ts do sleep 1 done $DENO run --unstable --compat -A cache.tselse# $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --compat --eval-file=https://deno.land/x/subshell@0.0.3-4/init.ts $DENO repl --unstable --compat --eval-file=https://deno.land/x/subshell@0.0.3-4/init.tsfi