This commit is contained in:
Peter Harpending
2026-09-03 15:47:09 -07:00
parent 66364fce04
commit edf2030b34
10 changed files with 92 additions and 28 deletions
+19
View File
@@ -0,0 +1,19 @@
%% @doc rubicon querier
-module(rq).
-vsn("0.1.0").
-author("Peter Harpending").
-copyright("Peter Harpending").
-export([start/1]).
-spec start(ArgV) -> ok
when ArgV :: [string()].
start(ArgV) ->
ok = application:ensure_started(hakuzaru),
ok = hz:chain_nodes([{"testnet.tsuriai.jp", 3013},
{"testnet.gajumaru.io", 3013}]),
ok = io:format("Hello, World! Args: ~tp~n", [ArgV]),
zx:silent_stop().