Skip to content

Commit

Permalink
DAL
Browse files Browse the repository at this point in the history
  • Loading branch information
drchrispinnock committed Jan 30, 2025
1 parent 7398906 commit 5ed3980
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
28 changes: 25 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,34 @@ const nextnet2_chain = new TezosChain(
},
provider
)

/*
// Nextnet 1st Blood reboot test network
const nextnet3_chain = new TezosChain(
{
category: protocolCategory,
humanName: "Nextnet-20250203",
snapOver: "nextnet",
description: "Test Chain for Next protocol (not for public use)",
activationBucket: activationBucket,
helmValuesFile: "networks/nextnet-20250203/values.yaml",
bakingPrivateKey: private_teztnets_baking_key,
bootstrapPeers: [],
rpcUrls: [],
indexers: [],
chartRepoVersion: "7.2.0",
networkStakes: true,
},
provider
)
/*
new TezosFaucet(
nextnet2_chain.name,
nextnet3_chain.name,
{
namespace: nextnet2_chain.namespace,
humanName: "Nextnet-20250130",
namespace: nextnet3_chain.namespace,
humanName: "Nextnet-20250203",
helmValuesFile: "networks/nextnet-20240130/faucet_values.yaml",
faucetPrivateKey: faucetPrivateKey,
faucetRecaptchaSiteKey: faucetRecaptchaSiteKey,
Expand Down
2 changes: 1 addition & 1 deletion networks/nextnet-20250203/faucet_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ images:
enableUI: true
config:
application:
name: "Tezos Nextnet"
name: "Tezos Nextnet 20250203 Faucet"
googleCaptchaSiteKey: "" # filled in by pulumi
backendUrl: "" # filled in by pulumi
githubRepo: https://github.com/tacoinfra/tezos-faucet
Expand Down
10 changes: 8 additions & 2 deletions teztnets_xyz_page/teztnet_page.md.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,15 @@ On a modern Tezos network, you will need to stake to declare your security bond.
octez-client stake <amount> for mykey
```

You may now launch the baker process.
Ideally you should run a DAL node.
```
octez-dal-node config init
octez-dal-node run
```

You may now launch the baker process (connecting to the DAL node).
```bash=3
octez-baker-{{ v["last_baking_daemon"] }} run with local node ~/.tezos-node mykey --liquidity-baking-toggle-vote pass
octez-baker-{{ v["last_baking_daemon"] }} run with local node ~/.tezos-node mykey --liquidity-baking-toggle-vote pass --dal-node http://localhost:10732
```

You may run the accuser as well:
Expand Down

0 comments on commit 5ed3980

Please sign in to comment.