You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add PostageTTL and PostageLabel options to all Beekeeper checks (#454)
* feat: enable PostageLabel option for all checks creating batches
* refactor: use geth-url as global flag
* feat(stamper): introduce postage-label as filter
* fix(stamper): log price in bzz
* feat(swap): add offset option for FetchBlockTime
* feat: replace postage-amount with postage-ttl
* chore: remove unused code
* chore: bump version to 0.26.0
* chore: go mod tidy
* fix: resolve deps
* chore: update configs
* chore: update configs
* fix: set amount to 1000 if price is 0
* fix(stake): set geth-url
* fix(redundancy): set PostageLabel type to string
* feat: automatically set semantic version number
* fix(swap): set options offset default to 1
* fix(swap): improve FetchBlockTime if offset is too large
* chore(swap): add log msg when offset too large
* fix(swap): limit offset to at most of half of the latest block
* fix(swap): increase offset to 1000
* fix: improve error msgs and flag descriptions
* fix(orchestration): ensure that SwapClient is initialized
* fix(stamper): ensure that SwapClient is initialized
--password password for generating Ethereum addresses (default "beekeeper")
313
311
--timeout duration timeout (default 5m0s)
@@ -381,7 +379,6 @@ It has following flags:
381
379
```console
382
380
--addresses strings Comma-separated list of Bee node addresses (must start with 0x). Overrides namespace and cluster name.
383
381
--cluster-name string Name of the Beekeeper cluster to target. Ignored if a namespace is specified.
384
-
--geth-url string Endpoint to chain node. Required.
385
382
--help help for node-funder
386
383
--label-selector string Kubernetes label selector for filtering resources within the specified namespace. Use an empty string to select all resources. (default "beekeeper.ethswarm.org/node-funder=true")
387
384
--min-native float Minimum amount of chain native coins (xDAI) nodes should have.
cmd.Flags().StringSliceP(optionNameAddresses, "a", nil, "Comma-separated list of Bee node addresses (must start with 0x). Overrides namespace and cluster name.")
112
111
cmd.Flags().StringP(optionNameNamespace, "n", "", "Kubernetes namespace. Overrides cluster name if set.")
113
112
cmd.Flags().String(optionNameClusterName, "", "Name of the Beekeeper cluster to target. Ignored if a namespace is specified.")
114
-
cmd.Flags().String(optionNameChainNodeEndpoint, "", "Endpoint to chain node. Required.")
115
113
cmd.Flags().String(optionNameWalletKey, "", "Hex-encoded private key for the Bee node wallet. Required.")
116
114
cmd.Flags().Float64(optionNameMinNative, 0, "Minimum amount of chain native coins (xDAI) nodes should have.")
117
115
cmd.Flags().Float64(optionNameMinSwarm, 0, "Minimum amount of swarm tokens (xBZZ) nodes should have.")
0 commit comments