@bloxbean/yaci-devkit-macos-arm64 0.10.0-preview3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/application.properties +34 -0
- package/config/download.properties +12 -0
- package/config/env +45 -0
- package/config/node.properties +99 -0
- package/config/version +2 -0
- package/package.json +17 -0
- package/readme.md +1 -0
- package/yaci-cli +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
spring.config.import=optional:file:./config/node.properties,optional:file:./config/download.properties
|
|
2
|
+
|
|
3
|
+
#admin endpoint ports
|
|
4
|
+
server.port=10000
|
|
5
|
+
|
|
6
|
+
#Set the path to the directory where all yaci-cli related files are stored including cardano-node binary.
|
|
7
|
+
#Default is the user_home/.yaci-cli
|
|
8
|
+
#yaci.cli.home=/Users/satya/yacicli
|
|
9
|
+
|
|
10
|
+
ogmios.enabled=false
|
|
11
|
+
kupo.enabled=false
|
|
12
|
+
yaci.store.enabled=false
|
|
13
|
+
|
|
14
|
+
yaci.store.mode=native
|
|
15
|
+
|
|
16
|
+
bp.create.enabled=true
|
|
17
|
+
|
|
18
|
+
## Default ports
|
|
19
|
+
#ogmios.port=1337
|
|
20
|
+
#kupo.port=1442
|
|
21
|
+
#yaci.store.port=8080
|
|
22
|
+
#socat.port=3333
|
|
23
|
+
#prometheus.port=12798
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
######################################################
|
|
27
|
+
#To configure an external database for Yaci Store (Indexer),
|
|
28
|
+
# uncomment the following properties and provide the required values
|
|
29
|
+
#Only PostgreSQL is supported for now for external database
|
|
30
|
+
######################################################
|
|
31
|
+
|
|
32
|
+
#yaci.store.db.url=jdbc:postgresql://localhost:5433/yaci_indexer?currentSchema=dev
|
|
33
|
+
#yaci.store.db.username=user
|
|
34
|
+
#yaci.store.db.password=
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#Please specify either the version or the full url for the following components
|
|
2
|
+
node.version=10.1.3
|
|
3
|
+
ogmios.version=6.9.0
|
|
4
|
+
kupo.version=2.9.0
|
|
5
|
+
yaci.store.version=0.1.1-graalvm-preview1
|
|
6
|
+
yaci.store.jar.version=0.1.0
|
|
7
|
+
|
|
8
|
+
#node.url=
|
|
9
|
+
#ogmios.url=
|
|
10
|
+
#kupo.url=
|
|
11
|
+
#yaci.store.url=
|
|
12
|
+
#yaci.store.jar.url=
|
package/config/env
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
yaci_store_enabled=true
|
|
2
|
+
ogmios_enabled=true
|
|
3
|
+
kupo_enabled=false
|
|
4
|
+
|
|
5
|
+
node=node1
|
|
6
|
+
yaci_cli_mode=native
|
|
7
|
+
yaci_store_mode=native
|
|
8
|
+
|
|
9
|
+
#######################################################
|
|
10
|
+
# Ports
|
|
11
|
+
#######################################################
|
|
12
|
+
HOST_N2N_PORT=3001
|
|
13
|
+
HOST_N2C_SOCAT_PORT=3333
|
|
14
|
+
HOST_STORE_API_PORT=8080
|
|
15
|
+
HOST_VIEWER_PORT=5173
|
|
16
|
+
HOST_CLUSTER_API_PORT=10000
|
|
17
|
+
HOST_SUBMIT_API_PORT=8090
|
|
18
|
+
HOST_OGMIOS_PORT=1337
|
|
19
|
+
HOST_KUPO_PORT=1442
|
|
20
|
+
|
|
21
|
+
#######################################################
|
|
22
|
+
# Viewer Config - DON'T CHANGE
|
|
23
|
+
#######################################################
|
|
24
|
+
VITE_INDEXER_BASE_URL=http://yaci-cli:8080/api/v1
|
|
25
|
+
VITE_INDEXER_WS_URL=ws://localhost:${HOST_STORE_API_PORT}/ws/liveblocks
|
|
26
|
+
IS_DOCKER=true
|
|
27
|
+
|
|
28
|
+
#######################################################
|
|
29
|
+
# Default Addreses
|
|
30
|
+
# Add or remove addresses to topup ada during first run
|
|
31
|
+
# Format: <address1>:<ada_amount>,<address2>:<ada_amount>,...
|
|
32
|
+
#######################################################
|
|
33
|
+
|
|
34
|
+
#topup_addresses=addr_test1qzlwg5c3mpr0cz5td0rvr5rvcgf02al05cqgd2wzv7pud6chpzk4elx4jh2f7xtftjrdxddr88wg6sfszu8r3gktpjtqrr00q9:2000,addr_test1qqwpl7h3g84mhr36wpetk904p7fchx2vst0z696lxk8ujsjyruqwmlsm344gfux3nsj6njyzj3ppvrqtt36cp9xyydzqzumz82:1000
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
############################################################
|
|
38
|
+
#To configure an external database for Yaci Store (Indexer),
|
|
39
|
+
#uncomment the following properties and provide the required values
|
|
40
|
+
#Only PostgreSQL is supported for now for external database
|
|
41
|
+
############################################################
|
|
42
|
+
|
|
43
|
+
#yaci_store_db_url=jdbc:postgresql://192.168.0.68:5433/yaci_indexer?currentSchema=dev
|
|
44
|
+
#yaci_store_db_username=user
|
|
45
|
+
#yaci_store_db_password=
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
#protocolMagic=42
|
|
2
|
+
#maxKESEvolutions=60
|
|
3
|
+
#securityParam=80
|
|
4
|
+
#slotsPerKESPeriod=129600
|
|
5
|
+
#updateQuorum=1
|
|
6
|
+
#peerSharing=true
|
|
7
|
+
|
|
8
|
+
## Shelley Genesis
|
|
9
|
+
#maxLovelaceSupply=45000000000000000
|
|
10
|
+
#poolPledgeInfluence=0
|
|
11
|
+
#decentralisationParam=0
|
|
12
|
+
#eMax=18
|
|
13
|
+
#keyDeposit=2000000
|
|
14
|
+
#maxBlockBodySize=65536
|
|
15
|
+
#maxBlockHeaderSize=1100
|
|
16
|
+
#maxTxSize=16384
|
|
17
|
+
#minFeeA=44
|
|
18
|
+
#minFeeB=155381
|
|
19
|
+
#minPoolCost=340000000
|
|
20
|
+
#minUTxOValue=1000000
|
|
21
|
+
#nOpt=100
|
|
22
|
+
#poolDeposit=500000000
|
|
23
|
+
|
|
24
|
+
#protocolMajorVer=8
|
|
25
|
+
#protocolMinorVer=0
|
|
26
|
+
#monetaryExpansionRate=0.003f
|
|
27
|
+
#treasuryGrowthRate=0.20f
|
|
28
|
+
|
|
29
|
+
##Default addresses
|
|
30
|
+
#initialAddresses[0].address=addr_test1qzx9hu8j4ah3auytk0mwcupd69hpc52t0cw39a65ndrah86djs784u92a3m5w475w3w35tyd6v3qumkze80j8a6h5tuqq5xe8y
|
|
31
|
+
#initialAddresses[0].balance=450000000
|
|
32
|
+
#initialAddresses[0].staked=true
|
|
33
|
+
#
|
|
34
|
+
#initialAddresses[1].address=addr_test1qqwpl7h3g84mhr36wpetk904p7fchx2vst0z696lxk8ujsjyruqwmlsm344gfux3nsj6njyzj3ppvrqtt36cp9xyydzqzumz82
|
|
35
|
+
#initialAddresses[1].balance=250000000
|
|
36
|
+
#initialAddresses[1].staked=false
|
|
37
|
+
|
|
38
|
+
##Alonzo
|
|
39
|
+
#collateralPercentage=150
|
|
40
|
+
#prMem=5.77e-2
|
|
41
|
+
#prSteps=7.21e-5
|
|
42
|
+
#lovelacePerUTxOWord=34482
|
|
43
|
+
#maxBlockExUnitsMem=62000000
|
|
44
|
+
#maxBlockExUnitsSteps=20000000000
|
|
45
|
+
#maxCollateralInputs=3
|
|
46
|
+
#maxTxExUnitsMem=14000000
|
|
47
|
+
#maxTxExUnitsSteps=10000000000
|
|
48
|
+
#maxValueSize=5000
|
|
49
|
+
|
|
50
|
+
##Conway
|
|
51
|
+
#pvtcommitteeNormal=0.51f
|
|
52
|
+
#pvtCommitteeNoConfidence=0.51f
|
|
53
|
+
#pvtHardForkInitiation=0.51f
|
|
54
|
+
#pvtMotionNoConfidence=0.51f
|
|
55
|
+
#pvtPPSecurityGroup=0.51f
|
|
56
|
+
|
|
57
|
+
#dvtMotionNoConfidence=0.51f
|
|
58
|
+
#dvtCommitteeNormal=0.51f
|
|
59
|
+
#dvtCommitteeNoConfidence=0.51f
|
|
60
|
+
#dvtUpdateToConstitution=0.51f
|
|
61
|
+
#dvtHardForkInitiation=0.51f
|
|
62
|
+
#dvtPPNetworkGroup=0.51f
|
|
63
|
+
#dvtPPEconomicGroup=0.51f
|
|
64
|
+
#dvtPPTechnicalGroup=0.51f
|
|
65
|
+
#dvtPPGovGroup=0.51f
|
|
66
|
+
#dvtTreasuryWithdrawal=0.51f
|
|
67
|
+
|
|
68
|
+
#committeeMinSize=0
|
|
69
|
+
#committeeMaxTermLength=200
|
|
70
|
+
#govActionLifetime=10
|
|
71
|
+
#govActionDeposit=1000000000
|
|
72
|
+
#dRepDeposit=2000000
|
|
73
|
+
#dRepActivity=20
|
|
74
|
+
|
|
75
|
+
#constitutionScript=7713eb6a46b67bfa1ca082f2b410b0a4e502237d03f7a0b7cbf1b025
|
|
76
|
+
#constitutionUrl=https://devkit.yaci.xyz/constitution.json
|
|
77
|
+
#constitutionDataHash=f89cc2469ce31c3dfda2f3e0b56c5c8b4ee4f0e5f66c30a3f12a95298b01179e
|
|
78
|
+
|
|
79
|
+
## CC Members
|
|
80
|
+
#ccMembers[0].hash=scriptHash-8fc13431159fdda66347a38c55105d50d77d67abc1c368b876d52ad1
|
|
81
|
+
#ccMembers[0].term=340
|
|
82
|
+
|
|
83
|
+
########################################################################################################
|
|
84
|
+
# Workaround for : https://github.com/bloxbean/yaci-devkit/issues/65
|
|
85
|
+
#
|
|
86
|
+
# The following parameters are enabled for a V2 cost model-related issue where there are 10 extra elements if the devnet
|
|
87
|
+
# is started with the Conway era at epoch 0. The following parameters are enabled to configure the Conway era hard fork (HF) at epoch 1.
|
|
88
|
+
# The network will start in the Babbage era and then hard fork (HF) to the Conway era at epoch 1.
|
|
89
|
+
|
|
90
|
+
# The shiftStartTimeBehind=true flag is enabled to shift the start time of the network to a time behind the current time by adjusting security parameter
|
|
91
|
+
# which changes the stability window. This is to speed up the process of reaching the Conway era.
|
|
92
|
+
#
|
|
93
|
+
# This should only be done in a development environment because if the stability window is larger than the epoch length, the reward/treasury calculations will be incorrect or ignored.
|
|
94
|
+
# Therefore, for a real multi-node network, you should start the network at the current time and allow it to reach the Conway era at epoch 1.
|
|
95
|
+
# So, the shiftStartTimeBehind flag should be "false" for non-development / multi-node networks.
|
|
96
|
+
#
|
|
97
|
+
#########################################################################################################
|
|
98
|
+
conwayHardForkAtEpoch=1
|
|
99
|
+
shiftStartTimeBehind=true
|
package/config/version
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bloxbean/yaci-devkit-macos-arm64",
|
|
3
|
+
"version": "0.10.0-preview3",
|
|
4
|
+
"main": "yaci-cli",
|
|
5
|
+
"files": [
|
|
6
|
+
"yaci-cli",
|
|
7
|
+
"config"
|
|
8
|
+
],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">= 12"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"yaci-devkit-linux-x64": "./yaci-cli"
|
|
15
|
+
},
|
|
16
|
+
"repository": "github:bloxbean/yaci-devkit"
|
|
17
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This package is used by `@bloxbean/yaci-devkit`.
|
package/yaci-cli
ADDED
|
Binary file
|