aggstam
230c1b1dd1
drk/alias: exit on erroneous alias size
2023-03-07 23:28:50 +02:00
parazyd
691d98d296
bin: Apply linter suggestions.
2023-03-07 12:29:51 +01:00
parazyd
43f89dbfc7
consensus: Remove erroneus tx logic.
2023-03-06 20:10:01 +01:00
parazyd
98aa6f94a6
darkfid/faucetd: Use new zkas db API
2023-03-06 18:33:53 +01:00
Sombra
5b675e045c
faucetd/src/main -> changes after cargo clippy --fix
2023-03-03 11:55:04 +00:00
Sombra
140e265198
faucet/src/main: remove TODO mark
2023-03-03 11:55:04 +00:00
Sombra
8da4b7ecb3
faucet/src/main -> update db_path with std::path
2023-03-03 11:55:04 +00:00
Dastan-glitch
cb847faaec
bin/ircd: [commitbot] display commit message up to the first newline
2023-03-01 17:00:46 +03:00
parazyd
d55a80490a
cargo fmt
2023-02-28 16:19:28 +01:00
sombra
a9b4f7f524
update formating to comply with rustfmt
2023-02-27 19:52:46 +00:00
Sombra
077913934f
bin/darkfid/src/main.rs: fix path
...
Updates line 304:
```
let db_path = format!("{}/{}", expand_path(&args.database)?.to_str().unwrap(), args.chain);
```
to:
```
let db_path = Path::new(expand_path(&args.database)?.to_str().unwrap()).join(args.chain.clone());
```
2023-02-27 19:52:46 +00:00
parazyd
4e3b863cda
Release v0.4.1
2023-02-25 16:00:20 +01:00
parazyd
8a1f640912
drk: Output a little note when subscribing for block notifications.
2023-02-25 14:20:31 +01:00
parazyd
79aba52132
drk: Fix OtcSwap join tx.
2023-02-25 14:20:30 +01:00
parazyd
b4119a3703
drk: Basic inspection of PartialSwapData.
...
Needs more love.
2023-02-25 14:20:30 +01:00
aggstam
99bbe777b9
drk/swap: support aliases, doc/testnet: update payment and atomic swap with aliases
2023-02-25 14:20:30 +01:00
aggstam
c16fc441c3
drk/token: support aliases on mint and freeze, also display on list
2023-02-25 14:20:30 +01:00
parazyd
23b6b110c5
drk: Update wallet metadata when tokens are being frozen.
2023-02-25 14:20:30 +01:00
parazyd
e67f133be8
drk: Token mint freezing
2023-02-25 14:20:30 +01:00
parazyd
6c2dc8f9bc
drk: Arbitrary token minting.
2023-02-25 14:20:30 +01:00
parazyd
bc09a2c6ff
drk: List imported token authorities.
2023-02-25 14:20:30 +01:00
parazyd
3d7bd42ccf
drk: Implement generation of new mint authorities.
2023-02-25 14:20:30 +01:00
parazyd
97de8cc2b6
drk: Implement token mint authority import.
2023-02-25 14:20:30 +01:00
parazyd
23b3f9f59a
drk: New Swap API
2023-02-25 14:20:30 +01:00
aggstam
33dc5a8959
faucetd: updated to only airdrop native token
2023-02-25 14:20:30 +01:00
parazyd
a9a9146b7c
drk: Update transfer API
2023-02-25 14:20:30 +01:00
Dastan-glitch
fcab6f6c2b
bin/genev: add missing license header
2023-02-23 16:41:46 +03:00
Dastan-glitch
2dbbf119d7
bin/genev: actually run cli commands in the script
2023-02-23 03:32:52 +03:00
Dastan-glitch
5f89f4f0bb
bin/genev: added tmux sessions script
2023-02-23 03:23:00 +03:00
Dastan-glitch
5a4ca9bcdc
bin/ircd2: refactor locking a mutex
2023-02-23 03:17:46 +03:00
Dastan-glitch
b5acec7e82
bin/genev: testing some generic event utilization of event_graph
2023-02-23 03:16:13 +03:00
Dastan-glitch
3e032170f0
set prefered/default transports for outbound to tls
2023-02-21 04:41:39 +03:00
Dastan-glitch
723e774af8
event_graph abstraction, making the event action generic
2023-02-21 04:31:18 +03:00
aggstam
6f0bcf99a5
drk: base58 encoding for spend_hook and user_data in wallet --coins
2023-02-20 14:09:12 +02:00
aggstam
c34ef03178
drk: show spend_hook and user_data on wallet --coins
2023-02-20 14:02:01 +02:00
Dastan-glitch
e972d3cfb4
bin/drk: shell tab completions added
2023-02-19 05:55:45 +03:00
Dastan-glitch
cd5dfbed0e
[WIP] event_graph added to src/ and ircd2 utilize it from there
2023-02-19 05:24:52 +03:00
aggstam
4292006959
drk: use aliases for actions
2023-02-18 21:28:26 +02:00
aggstam
cd8c619503
drk: restrict aliases to 5 characters
2023-02-18 21:01:43 +02:00
parazyd
42109793b3
darkfid: Fix seed URI typo in the config file
2023-02-18 17:51:23 +01:00
aggstam
e052633c94
drk: display aliases in all tables
2023-02-18 18:26:09 +02:00
x
f76f33ad72
drk/darkfid make json-rpc get-tx protocol safe.
2023-02-18 17:17:00 +01:00
aggstam
9aa8374c10
drk: token aliases impl added
...
wallet.db must be reinitialized with ./drk wallet --initialize to create the new tables
2023-02-18 17:48:57 +02:00
x
defece9c00
drk get-tx: assert tx hash matches
2023-02-18 15:34:13 +01:00
x
89736f3f86
add command to simulate tx and show erroneous state for fetch-tx
2023-02-18 15:23:54 +01:00
x
5751c08cd8
add subcommand to simulate/validate txs
2023-02-18 13:04:09 +01:00
x
c35365619d
add drk subcommand to fetch blockchain txs by hash
2023-02-18 12:21:29 +01:00
parazyd
ef86063e59
faucetd: Remove ctrlc and introduce signal-hook.
2023-02-17 12:54:13 +01:00
Dastan-glitch
bf26da1709
bin/ircd2: return orphan to orphans pool if not re-linked
2023-02-16 05:04:19 +03:00
Dastan-glitch
aae1ec434b
bin/ircd2: remove [skip_serialize] caused read_confirms to reset to zero
2023-02-16 04:05:05 +03:00