-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
044ea10
commit b6d7713
Showing
4 changed files
with
90 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ | |
|
||
packages = with pkgs; [ | ||
alejandra | ||
lld | ||
]; | ||
|
||
commands = [ | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
admin: | ||
address: 0.0.0.0 | ||
enabled: true | ||
port: 5101 | ||
publicURL: http://127.0.0.1:5101 | ||
debug: | ||
port: 6060 | ||
event: | ||
dbevents: | ||
bufferSize: 10000 | ||
http: | ||
address: 0.0.0.0 | ||
port: 5000 | ||
publicURL: http://127.0.0.1:5000 | ||
log: | ||
level: debug | ||
metrics: {} | ||
namespaces: | ||
default: default | ||
predefined: | ||
- defaultKey: addr_test1vqhkukz0285zvk0xrwk9jlq0075tx6furuzcjvzpnhtgelsuhhqc4 | ||
description: Default predefined namespace | ||
name: default | ||
plugins: | ||
- database0 | ||
- blockchain0 | ||
plugins: | ||
blockchain: | ||
- cardano: | ||
cardanoconnect: | ||
topic: "0" | ||
url: http://firefly-cardanoconnect:5018 | ||
name: blockchain0 | ||
type: cardano | ||
database: | ||
- name: database0 | ||
postgres: | ||
migrations: | ||
auto: true | ||
url: postgres://postgres:f1refly@postgres:5432?sslmode=disable | ||
type: postgres | ||
spi: | ||
address: 0.0.0.0 | ||
enabled: true | ||
port: 5101 | ||
publicURL: http://127.0.0.1:5101 | ||
ui: | ||
path: ./frontend |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
deploy-contract: | ||
cargo run -p firefly-cardano-deploy-contract -- --contract-path ./wasm/simple-tx | ||
cargo run -p firefly-cardano-deploy-contract -- --contract-path ./wasm/simple-tx --firefly-url http://localhost:5000 | ||
demo: deploy-contract | ||
cargo run -p firefly-cardano-demo -- --addr-from $ADDR_FROM --addr-to $ADDR_TO --amount 1000000 | ||
|