diff --git a/docs/content/api/openapi.yaml b/docs/content/api/openapi.yaml index 3efdfb6d6c..5b76242046 100644 --- a/docs/content/api/openapi.yaml +++ b/docs/content/api/openapi.yaml @@ -2100,7 +2100,7 @@ paths: type: boolean - name: remote description: > - prior to processing, retreive the manifest from the Unchained Index smart contract + prior to processing, retrieve the manifest from the Unchained Index smart contract required: false style: form in: query diff --git a/docs/content/chifra/admin.md b/docs/content/chifra/admin.md index afb4ef2ce5..38d29c3db0 100644 --- a/docs/content/chifra/admin.md +++ b/docs/content/chifra/admin.md @@ -17,8 +17,8 @@ weight: 1600 toc: true --- -The Admin gourp of commands allows you to query the status of the TrueBlocks system and -manage various apects including the Unchained Index. You may query the status; query for information +The Admin group of commands allows you to query the status of the TrueBlocks system and +manage various aspects including the Unchained Index. You may query the status; query for information about TrueBlocks caches; control the creation, sharing, and pinning of the Unchained Index; and even serve the data through an API. @@ -165,7 +165,7 @@ To convert the options for a command line tool to an API call, do the following: 1. Any `--snake_case` argument to the command line should be converted to `camelCase`. For example, `--no_header` on the command line should be sent as `&noHeader` to the API server. 2. Any `switch` on the command line, (i.e., options whose presence indicates `true` and whose absence indicates `false`) should be sent as a `boolean` to the API server. For example, `--no_header` on the command line should be sent as `&noHeader=true` to the API server. If the option is `fales`, you do not need to send it to the API server. -3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` seperating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). +3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` separating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). ## chifra scrape @@ -179,7 +179,7 @@ multiplexer such as `tmux`. You may start and stop `chifra scrape` as needed, bu scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information -on how the scraping process works and prerequisites for it proper operation. +on how the scraping process works and prerequisites for its proper operation. You may adjust the speed of the index creation with the `--sleep` and `--block_cnt` options. On some machines, or when running against some EVM node software, the scraper may overburden the @@ -234,7 +234,7 @@ Each of the following additional configurable command line options are available Note that for Ethereum mainnet, the default values for appsPerChunk and firstSnap are 2,000,000 and 2,300,000 respectively. See the specification for a justification of these values. -These items may be set in three ways, each overridding the preceeding method: +These items may be set in three ways, each overriding the preceding method: -- in the above configuration file under the `[scrape.]` group, -- in the environment by exporting the configuration item as UPPER_CASE (with underbars removed) and prepended with TB_SCRAPE_CHAIN_, or @@ -245,7 +245,7 @@ These items may be set in three ways, each overridding the preceeding method: Each time `chifra scrape` runs, it begins at the last block it completed processing (plus one). With each pass, the scraper descends as deeply as is possible into each block's data. (This is why TrueBlocks requires a `--tracing` node.) As the scraper encounters appearances of address in the -block's data, it adds those appearance to a growing index. Periodically (after processing the the +block's data, it adds those appearances to a growing index. Periodically (after processing the block that contains the 2,000,000th appearance), the system consolidates an **index chunk**. An **index chunk** is a portion of the index containing approximately 2,000,000 records (although, @@ -279,7 +279,7 @@ more information about running the scraper and building and sharing the index of ## chifra chunks The chifra chunks routine provides tools for interacting with, checking the validity of, cleaning up, -and analyizing the Unchained Index. It provides options to list pins, the Manifest, summary data +and analyzing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. @@ -300,7 +300,7 @@ Flags: -c, --check check the manifest, index, or blooms for internal consistency -i, --pin pin the manifest or each index chunk and bloom -p, --publish publish the manifest to the Unchained Index smart contract - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -F, --first_block uint first block to process (inclusive) -L, --last_block uint last block to process (inclusive) @@ -344,6 +344,7 @@ Links: - [api docs](/api/#operation/admin-chunks) - [source code](https://github.com/TrueBlocks/trueblocks-core/tree/master/src/apps/chifra/internal/chunks) + ## chifra init When invoked, `chifra init` reads a value from a smart contract called **The Unchained Index** @@ -360,7 +361,7 @@ time you run it. Certain parts of the system (`chifra list` and `chifra export` for example) if you have not previously run `chifra init` or `chifra scrape`. You will be warned by the system until it's -satified. +satisfied. If you run `chifra init` and allow it to complete, the next time you run `chifra scrape`, it will start where `init` finished. This means that only the blooms will be stored on your hard drive. @@ -397,3 +398,4 @@ Links: - [api docs](/api/#operation/admin-init) - [source code](https://github.com/TrueBlocks/trueblocks-core/tree/master/src/apps/chifra/internal/init) + diff --git a/docs/readmes/admin-chunks.md b/docs/readmes/admin-chunks.md index 457dfd5d39..20cb4082d4 100644 --- a/docs/readmes/admin-chunks.md +++ b/docs/readmes/admin-chunks.md @@ -2,7 +2,7 @@ ## chifra chunks The chifra chunks routine provides tools for interacting with, checking the validity of, cleaning up, -and analyizing the Unchained Index. It provides options to list pins, the Manifest, summary data +and analyzing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. @@ -23,7 +23,7 @@ Flags: -c, --check check the manifest, index, or blooms for internal consistency -i, --pin pin the manifest or each index chunk and bloom -p, --publish publish the manifest to the Unchained Index smart contract - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -F, --first_block uint first block to process (inclusive) -L, --last_block uint last block to process (inclusive) @@ -66,3 +66,4 @@ Links: - [api docs](/api/#operation/admin-chunks) - [source code](https://github.com/TrueBlocks/trueblocks-core/tree/master/src/apps/chifra/internal/chunks) + diff --git a/docs/readmes/admin-daemon.md b/docs/readmes/admin-daemon.md index 035cbc94c7..c2ac219c9a 100644 --- a/docs/readmes/admin-daemon.md +++ b/docs/readmes/admin-daemon.md @@ -57,5 +57,5 @@ To convert the options for a command line tool to an API call, do the following: 1. Any `--snake_case` argument to the command line should be converted to `camelCase`. For example, `--no_header` on the command line should be sent as `&noHeader` to the API server. 2. Any `switch` on the command line, (i.e., options whose presence indicates `true` and whose absence indicates `false`) should be sent as a `boolean` to the API server. For example, `--no_header` on the command line should be sent as `&noHeader=true` to the API server. If the option is `fales`, you do not need to send it to the API server. -3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` seperating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). +3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` separating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). diff --git a/docs/readmes/admin-init.md b/docs/readmes/admin-init.md index b563ae701e..13e6846df4 100644 --- a/docs/readmes/admin-init.md +++ b/docs/readmes/admin-init.md @@ -15,7 +15,7 @@ time you run it. Certain parts of the system (`chifra list` and `chifra export` for example) if you have not previously run `chifra init` or `chifra scrape`. You will be warned by the system until it's -satified. +satisfied. If you run `chifra init` and allow it to complete, the next time you run `chifra scrape`, it will start where `init` finished. This means that only the blooms will be stored on your hard drive. @@ -52,3 +52,4 @@ Links: - [api docs](/api/#operation/admin-init) - [source code](https://github.com/TrueBlocks/trueblocks-core/tree/master/src/apps/chifra/internal/init) + diff --git a/docs/readmes/admin-scrape.md b/docs/readmes/admin-scrape.md index 10f6c76d4e..ce6a555d33 100644 --- a/docs/readmes/admin-scrape.md +++ b/docs/readmes/admin-scrape.md @@ -10,7 +10,7 @@ multiplexer such as `tmux`. You may start and stop `chifra scrape` as needed, bu scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information -on how the scraping process works and prerequisites for it proper operation. +on how the scraping process works and prerequisites for its proper operation. You may adjust the speed of the index creation with the `--sleep` and `--block_cnt` options. On some machines, or when running against some EVM node software, the scraper may overburden the @@ -65,7 +65,7 @@ Each of the following additional configurable command line options are available Note that for Ethereum mainnet, the default values for appsPerChunk and firstSnap are 2,000,000 and 2,300,000 respectively. See the specification for a justification of these values. -These items may be set in three ways, each overridding the preceeding method: +These items may be set in three ways, each overriding the preceding method: -- in the above configuration file under the `[scrape.]` group, -- in the environment by exporting the configuration item as UPPER_CASE (with underbars removed) and prepended with TB_SCRAPE_CHAIN_, or @@ -76,7 +76,7 @@ These items may be set in three ways, each overridding the preceeding method: Each time `chifra scrape` runs, it begins at the last block it completed processing (plus one). With each pass, the scraper descends as deeply as is possible into each block's data. (This is why TrueBlocks requires a `--tracing` node.) As the scraper encounters appearances of address in the -block's data, it adds those appearance to a growing index. Periodically (after processing the the +block's data, it adds those appearances to a growing index. Periodically (after processing the block that contains the 2,000,000th appearance), the system consolidates an **index chunk**. An **index chunk** is a portion of the index containing approximately 2,000,000 records (although, diff --git a/docs/templates/readme-groups/admin.md b/docs/templates/readme-groups/admin.md index 882ac24d44..c8d5b8e33b 100644 --- a/docs/templates/readme-groups/admin.md +++ b/docs/templates/readme-groups/admin.md @@ -1,6 +1,6 @@ -The Admin gourp of commands allows you to query the status of the TrueBlocks system and -manage various apects including the Unchained Index. You may query the status; query for information +The Admin group of commands allows you to query the status of the TrueBlocks system and +manage various aspects including the Unchained Index. You may query the status; query for information about TrueBlocks caches; control the creation, sharing, and pinning of the Unchained Index; and even serve the data through an API. diff --git a/docs/templates/readme-intros/admin-chunks.md b/docs/templates/readme-intros/admin-chunks.md index 72b084a8c4..724aa27067 100644 --- a/docs/templates/readme-intros/admin-chunks.md +++ b/docs/templates/readme-intros/admin-chunks.md @@ -1,6 +1,6 @@ The [{NAME}] routine provides tools for interacting with, checking the validity of, cleaning up, -and analyizing the Unchained Index. It provides options to list pins, the Manifest, summary data +and analyzing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. diff --git a/docs/templates/readme-intros/admin-daemon.notes.md b/docs/templates/readme-intros/admin-daemon.notes.md index a6226cb4d2..959e6bc712 100644 --- a/docs/templates/readme-intros/admin-daemon.notes.md +++ b/docs/templates/readme-intros/admin-daemon.notes.md @@ -5,4 +5,4 @@ To convert the options for a command line tool to an API call, do the following: 1. Any `--snake_case` argument to the command line should be converted to `camelCase`. For example, `--no_header` on the command line should be sent as `&noHeader` to the API server. 2. Any `switch` on the command line, (i.e., options whose presence indicates `true` and whose absence indicates `false`) should be sent as a `boolean` to the API server. For example, `--no_header` on the command line should be sent as `&noHeader=true` to the API server. If the option is `fales`, you do not need to send it to the API server. -3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` seperating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). +3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` separating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). diff --git a/docs/templates/readme-intros/admin-init.md b/docs/templates/readme-intros/admin-init.md index e4f89dd66f..e8d97442aa 100644 --- a/docs/templates/readme-intros/admin-init.md +++ b/docs/templates/readme-intros/admin-init.md @@ -13,7 +13,7 @@ time you run it. Certain parts of the system (`chifra list` and `chifra export` for example) if you have not previously run `chifra init` or `chifra scrape`. You will be warned by the system until it's -satified. +satisfied. If you run `chifra init` and allow it to complete, the next time you run `chifra scrape`, it will start where `init` finished. This means that only the blooms will be stored on your hard drive. diff --git a/docs/templates/readme-intros/admin-scrape.md b/docs/templates/readme-intros/admin-scrape.md index 87b75910b3..1dab1e45c5 100644 --- a/docs/templates/readme-intros/admin-scrape.md +++ b/docs/templates/readme-intros/admin-scrape.md @@ -8,7 +8,7 @@ multiplexer such as `tmux`. You may start and stop `[{NAME}]` as needed, but doi scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information -on how the scraping process works and prerequisites for it proper operation. +on how the scraping process works and prerequisites for its proper operation. You may adjust the speed of the index creation with the `--sleep` and `--block_cnt` options. On some machines, or when running against some EVM node software, the scraper may overburden the diff --git a/docs/templates/readme-intros/admin-scrape.notes.md b/docs/templates/readme-intros/admin-scrape.notes.md index 94faef6034..4898c8c59c 100644 --- a/docs/templates/readme-intros/admin-scrape.notes.md +++ b/docs/templates/readme-intros/admin-scrape.notes.md @@ -4,7 +4,7 @@ Each time `[{NAME}]` runs, it begins at the last block it completed processing (plus one). With each pass, the scraper descends as deeply as is possible into each block's data. (This is why TrueBlocks requires a `--tracing` node.) As the scraper encounters appearances of address in the -block's data, it adds those appearance to a growing index. Periodically (after processing the the +block's data, it adds those appearances to a growing index. Periodically (after processing the block that contains the 2,000,000th appearance), the system consolidates an **index chunk**. An **index chunk** is a portion of the index containing approximately 2,000,000 records (although, diff --git a/sdk/typescript/yarn.lock b/sdk/typescript/yarn.lock index 029a1af5dd..c8fdb4904e 100644 --- a/sdk/typescript/yarn.lock +++ b/sdk/typescript/yarn.lock @@ -2486,9 +2486,9 @@ vite-node@0.29.2: vite "^3.0.0 || ^4.0.0" "vite@^3.0.0 || ^4.0.0": - version "4.4.9" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.4.9.tgz#1402423f1a2f8d66fd8d15e351127c7236d29d3d" - integrity sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA== + version "4.5.1" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.1.tgz#3370986e1ed5dbabbf35a6c2e1fb1e18555b968a" + integrity sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA== dependencies: esbuild "^0.18.10" postcss "^8.4.27" diff --git a/src/apps/chifra/cmd/chunks.go b/src/apps/chifra/cmd/chunks.go index 60674cb4fe..9ef55b36eb 100644 --- a/src/apps/chifra/cmd/chunks.go +++ b/src/apps/chifra/cmd/chunks.go @@ -73,7 +73,7 @@ func init() { chunksCmd.Flags().BoolVarP(&chunksPkg.GetOptions().Publish, "publish", "p", false, "publish the manifest to the Unchained Index smart contract") chunksCmd.Flags().StringVarP(&chunksPkg.GetOptions().Publisher, "publisher", "P", "", "for some query options, the publisher of the index (hidden)") chunksCmd.Flags().Uint64VarP(&chunksPkg.GetOptions().Truncate, "truncate", "n", 0, "truncate the entire index at this block (requires a block identifier) (hidden)") - chunksCmd.Flags().BoolVarP(&chunksPkg.GetOptions().Remote, "remote", "r", false, "prior to processing, retreive the manifest from the Unchained Index smart contract") + chunksCmd.Flags().BoolVarP(&chunksPkg.GetOptions().Remote, "remote", "r", false, "prior to processing, retrieve the manifest from the Unchained Index smart contract") chunksCmd.Flags().StringSliceVarP(&chunksPkg.GetOptions().Belongs, "belongs", "b", nil, "in index mode only, checks the address(es) for inclusion in the given index chunk") chunksCmd.Flags().BoolVarP(&chunksPkg.GetOptions().Diff, "diff", "f", false, "compare two index portions (see notes) (hidden)") chunksCmd.Flags().Uint64VarP(&chunksPkg.GetOptions().FirstBlock, "first_block", "F", 0, "first block to process (inclusive)") diff --git a/src/apps/chifra/go.mod b/src/apps/chifra/go.mod index c6107790d0..ea45bce2eb 100644 --- a/src/apps/chifra/go.mod +++ b/src/apps/chifra/go.mod @@ -16,7 +16,7 @@ require ( github.com/spf13/cobra v1.7.0 github.com/spf13/viper v1.9.0 github.com/wealdtech/go-ens/v3 v3.5.2 - golang.org/x/term v0.7.0 + golang.org/x/term v0.15.0 golang.org/x/time v0.0.0-20220922220347-f3bd1da661af google.golang.org/grpc v1.56.3 google.golang.org/protobuf v1.30.0 @@ -71,11 +71,11 @@ require ( github.com/tklauser/numcpus v0.4.0 // indirect github.com/wealdtech/go-multicodec v1.4.0 // indirect github.com/yusufpapurcu/wmi v1.2.2 // indirect - golang.org/x/crypto v0.6.0 // indirect + golang.org/x/crypto v0.17.0 // indirect golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb // indirect - golang.org/x/net v0.9.0 // indirect - golang.org/x/sys v0.11.0 // indirect - golang.org/x/text v0.9.0 // indirect + golang.org/x/net v0.10.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect gopkg.in/ini.v1 v1.63.2 // indirect gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect diff --git a/src/apps/chifra/go.sum b/src/apps/chifra/go.sum index 445c4749e2..e015443c44 100644 --- a/src/apps/chifra/go.sum +++ b/src/apps/chifra/go.sum @@ -736,8 +736,8 @@ golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220213190939-1e6e3497d506/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.6.0 h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc= -golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -826,8 +826,8 @@ golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qx golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -938,13 +938,13 @@ golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= +golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= +golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -954,8 +954,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= diff --git a/src/apps/chifra/internal/chunks/README.md b/src/apps/chifra/internal/chunks/README.md index a9994f36ce..5df3479e07 100644 --- a/src/apps/chifra/internal/chunks/README.md +++ b/src/apps/chifra/internal/chunks/README.md @@ -2,7 +2,7 @@ ## chifra chunks The chifra chunks routine provides tools for interacting with, checking the validity of, cleaning up, -and analyizing the Unchained Index. It provides options to list pins, the Manifest, summary data +and analyzing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. @@ -23,7 +23,7 @@ Flags: -c, --check check the manifest, index, or blooms for internal consistency -i, --pin pin the manifest or each index chunk and bloom -p, --publish publish the manifest to the Unchained Index smart contract - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -F, --first_block uint first block to process (inclusive) -L, --last_block uint last block to process (inclusive) diff --git a/src/apps/chifra/internal/chunks/doc.go b/src/apps/chifra/internal/chunks/doc.go index dba76d6c45..cde8da318f 100644 --- a/src/apps/chifra/internal/chunks/doc.go +++ b/src/apps/chifra/internal/chunks/doc.go @@ -6,5 +6,5 @@ * the code inside of 'EXISTING_CODE' tags. */ -// Package chunksPkg handles the chifra chunks command. It The routine provides tools for interacting with, checking the validity of, cleaning up, and analyizing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. +// Package chunksPkg handles the chifra chunks command. It The routine provides tools for interacting with, checking the validity of, cleaning up, and analyzing the Unchained Index. It provides options to list pins, the Manifest, summary data on the index, Bloom filters, addresses, and appearances. While still in its early stages, this tool will eventually allow users to clean their local index, clean their remote index, study the indexes, etc. Stay tuned. package chunksPkg diff --git a/src/apps/chifra/internal/chunks/options.go b/src/apps/chifra/internal/chunks/options.go index 33a2bff636..2610c6dfd8 100644 --- a/src/apps/chifra/internal/chunks/options.go +++ b/src/apps/chifra/internal/chunks/options.go @@ -33,7 +33,7 @@ type ChunksOptions struct { Publish bool `json:"publish,omitempty"` // Publish the manifest to the Unchained Index smart contract Publisher string `json:"publisher,omitempty"` // For some query options, the publisher of the index Truncate uint64 `json:"truncate,omitempty"` // Truncate the entire index at this block (requires a block identifier) - Remote bool `json:"remote,omitempty"` // Prior to processing, retreive the manifest from the Unchained Index smart contract + Remote bool `json:"remote,omitempty"` // Prior to processing, retrieve the manifest from the Unchained Index smart contract Belongs []string `json:"belongs,omitempty"` // In index mode only, checks the address(es) for inclusion in the given index chunk Diff bool `json:"diff,omitempty"` // Compare two index portions (see notes) FirstBlock uint64 `json:"firstBlock,omitempty"` // First block to process (inclusive) diff --git a/src/apps/chifra/internal/daemon/README.md b/src/apps/chifra/internal/daemon/README.md index f6385cb293..cc9219f224 100644 --- a/src/apps/chifra/internal/daemon/README.md +++ b/src/apps/chifra/internal/daemon/README.md @@ -52,7 +52,7 @@ To convert the options for a command line tool to an API call, do the following: 1. Any `--snake_case` argument to the command line should be converted to `camelCase`. For example, `--no_header` on the command line should be sent as `&noHeader` to the API server. 2. Any `switch` on the command line, (i.e., options whose presence indicates `true` and whose absence indicates `false`) should be sent as a `boolean` to the API server. For example, `--no_header` on the command line should be sent as `&noHeader=true` to the API server. If the option is `fales`, you do not need to send it to the API server. -3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` seperating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). +3. Positionals such as the addresses, topics, and four-bytes for `chifra export`, must be prepended with their positional name. For example, `chifra export
` should be sent as `&addrs=
&topics=` to the API server. For some commands (experiment) you may send more than one value for a positional with `%20` separating the entries or by sending multiple positionals (i.e., `&addrs=&addrs=`). ### Other Options diff --git a/src/apps/chifra/internal/init/README.md b/src/apps/chifra/internal/init/README.md index 52613ae769..f822593f0d 100644 --- a/src/apps/chifra/internal/init/README.md +++ b/src/apps/chifra/internal/init/README.md @@ -15,7 +15,7 @@ time you run it. Certain parts of the system (`chifra list` and `chifra export` for example) if you have not previously run `chifra init` or `chifra scrape`. You will be warned by the system until it's -satified. +satisfied. If you run `chifra init` and allow it to complete, the next time you run `chifra scrape`, it will start where `init` finished. This means that only the blooms will be stored on your hard drive. diff --git a/src/apps/chifra/internal/init/doc.go b/src/apps/chifra/internal/init/doc.go index cf4bc94c97..148953af85 100644 --- a/src/apps/chifra/internal/init/doc.go +++ b/src/apps/chifra/internal/init/doc.go @@ -6,5 +6,5 @@ * the code inside of 'EXISTING_CODE' tags. */ -// Package initPkg handles the chifra init command. It When invoked, reads a value from a smart contract called **The Unchained Index** (0x0c316b7042b419d07d343f2f4f5bd54ff731183d). This value (manifestHashMap) is an IPFS hash pointing to a pinned file (called the Manifest) that contains a large collection of other IPFS hashes. These other hashes point to each of the Bloom filter and Index Chunk. TrueBlocks periodically publishes the Manifest's hash to the smart contract. This makes the index available for our software to use and impossible for us to withhold. Both of these aspects of the manifest are by design. If you stop chifra init before it finishes, it will pick up again where it left off the next time you run it. Certain parts of the system (chifra list and chifra export for example) if you have not previously run chifra init or chifra scrape. You will be warned by the system until it's satified. If you run chifra init and allow it to complete, the next time you run chifra scrape, it will start where init finished. This means that only the blooms will be stored on your hard drive. Subsequent scraping will produce both chunks and blooms, although you can, if you wish delete chunks that are not being used. You may periodically run chifra init if you prefer not to scrape. +// Package initPkg handles the chifra init command. It When invoked, reads a value from a smart contract called **The Unchained Index** (0x0c316b7042b419d07d343f2f4f5bd54ff731183d). This value (manifestHashMap) is an IPFS hash pointing to a pinned file (called the Manifest) that contains a large collection of other IPFS hashes. These other hashes point to each of the Bloom filter and Index Chunk. TrueBlocks periodically publishes the Manifest's hash to the smart contract. This makes the index available for our software to use and impossible for us to withhold. Both of these aspects of the manifest are by design. If you stop chifra init before it finishes, it will pick up again where it left off the next time you run it. Certain parts of the system (chifra list and chifra export for example) if you have not previously run chifra init or chifra scrape. You will be warned by the system until it's satisfied. If you run chifra init and allow it to complete, the next time you run chifra scrape, it will start where init finished. This means that only the blooms will be stored on your hard drive. Subsequent scraping will produce both chunks and blooms, although you can, if you wish delete chunks that are not being used. You may periodically run chifra init if you prefer not to scrape. package initPkg diff --git a/src/apps/chifra/internal/scrape/README.md b/src/apps/chifra/internal/scrape/README.md index 106af76a9d..8a682ffd99 100644 --- a/src/apps/chifra/internal/scrape/README.md +++ b/src/apps/chifra/internal/scrape/README.md @@ -10,7 +10,7 @@ multiplexer such as `tmux`. You may start and stop `chifra scrape` as needed, bu scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information -on how the scraping process works and prerequisites for it proper operation. +on how the scraping process works and prerequisites for its proper operation. You may adjust the speed of the index creation with the `--sleep` and `--block_cnt` options. On some machines, or when running against some EVM node software, the scraper may overburden the @@ -60,7 +60,7 @@ Each of the following additional configurable command line options are available Note that for Ethereum mainnet, the default values for appsPerChunk and firstSnap are 2,000,000 and 2,300,000 respectively. See the specification for a justification of these values. -These items may be set in three ways, each overridding the preceeding method: +These items may be set in three ways, each overriding the preceding method: -- in the above configuration file under the `[scrape.]` group, -- in the environment by exporting the configuration item as UPPER_CASE (with underbars removed) and prepended with TB_SCRAPE_CHAIN_, or @@ -71,7 +71,7 @@ These items may be set in three ways, each overridding the preceeding method: Each time `chifra scrape` runs, it begins at the last block it completed processing (plus one). With each pass, the scraper descends as deeply as is possible into each block's data. (This is why TrueBlocks requires a `--tracing` node.) As the scraper encounters appearances of address in the -block's data, it adds those appearance to a growing index. Periodically (after processing the the +block's data, it adds those appearances to a growing index. Periodically (after processing the block that contains the 2,000,000th appearance), the system consolidates an **index chunk**. An **index chunk** is a portion of the index containing approximately 2,000,000 records (although, diff --git a/src/apps/chifra/internal/scrape/doc.go b/src/apps/chifra/internal/scrape/doc.go index 4a2cc6051d..84660b8c92 100644 --- a/src/apps/chifra/internal/scrape/doc.go +++ b/src/apps/chifra/internal/scrape/doc.go @@ -6,5 +6,5 @@ * the code inside of 'EXISTING_CODE' tags. */ -// Package scrapePkg handles the chifra scrape command. It The application creates TrueBlocks' chunked index of address appearances -- the fundamental data structure of the entire system. It also, optionally, pins each chunk of the index to IPFS. is a long running process, therefore we advise you run it as a service or in terminal multiplexer such as tmux. You may start and stop as needed, but doing so means the scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information on how the scraping process works and prerequisites for it proper operation. You may adjust the speed of the index creation with the --sleep and --block_cnt options. On some machines, or when running against some EVM node software, the scraper may overburden the hardware. Slowing things down will ensure proper operation. Finally, you may optionally --pin each new chunk to IPFS which naturally shards the database among all users. By default, pinning is against a locally running IPFS node, but the --remote option allows pinning to an IPFS pinning service such as Pinata. +// Package scrapePkg handles the chifra scrape command. It The application creates TrueBlocks' chunked index of address appearances -- the fundamental data structure of the entire system. It also, optionally, pins each chunk of the index to IPFS. is a long running process, therefore we advise you run it as a service or in terminal multiplexer such as tmux. You may start and stop as needed, but doing so means the scraper will not be keeping up with the front of the blockchain. The next time it starts, it will have to catch up to the chain, a process that may take several hours depending on how long ago it was last run. See the section below and the "Papers" section of our website for more information on how the scraping process works and prerequisites for its proper operation. You may adjust the speed of the index creation with the --sleep and --block_cnt options. On some machines, or when running against some EVM node software, the scraper may overburden the hardware. Slowing things down will ensure proper operation. Finally, you may optionally --pin each new chunk to IPFS which naturally shards the database among all users. By default, pinning is against a locally running IPFS node, but the --remote option allows pinning to an IPFS pinning service such as Pinata. package scrapePkg diff --git a/src/cmd-line-options.csv b/src/cmd-line-options.csv index ba56132c89..93d0bb3313 100644 --- a/src/cmd-line-options.csv +++ b/src/cmd-line-options.csv @@ -270,7 +270,7 @@ num,group,tags,api_route,tool,longName,hotKey,def_val,is_required,is_customizabl 31940,apps,Admin,chunks,chunkMan,publish,p,,false,false,true,true,gocmd,switch,,publish the manifest to the Unchained Index smart contract 31942,apps,Admin,chunks,chunkMan,publisher,P,,false,false,false,false,gocmd,flag,
,for some query options, the publisher of the index 31925,apps,Admin,chunks,chunkMan,truncate,n,,false,false,false,false,gocmd,flag,,truncate the entire index at this block (requires a block identifier) -31940,apps,Admin,chunks,chunkMan,remote,r,,false,false,true,true,gocmd,switch,,prior to processing, retreive the manifest from the Unchained Index smart contract +31940,apps,Admin,chunks,chunkMan,remote,r,,false,false,true,true,gocmd,switch,,prior to processing, retrieve the manifest from the Unchained Index smart contract 31942,apps,Admin,chunks,chunkMan,belongs,b,,false,false,true,true,gocmd,flag,list,in index mode only, checks the address(es) for inclusion in the given index chunk 31944,apps,Admin,chunks,chunkMan,diff,f,,false,false,false,false,gocmd,switch,,compare two index portions (see notes) 31946,apps,Admin,chunks,chunkMan,first_block,F,0,false,false,true,true,gocmd,flag,,first block to process (inclusive) diff --git a/src/dev_tools/makeClass/handle_readmes.cpp b/src/dev_tools/makeClass/handle_readmes.cpp index 1d3c735e6c..ad0ba2ac8c 100644 --- a/src/dev_tools/makeClass/handle_readmes.cpp +++ b/src/dev_tools/makeClass/handle_readmes.cpp @@ -214,7 +214,7 @@ const char* STR_CONFIG = "Note that for Ethereum mainnet, the default values for appsPerChunk and firstSnap are 2,000,000 and 2,300,000 " "respectively. See the specification for a justification of these values.\n" "\n" - "These items may be set in three ways, each overridding the preceeding method:\n" + "These items may be set in three ways, each overriding the preceding method:\n" "\n" "-- in the above configuration file under the `[scrape.]` group, \n" "-- in the environment by exporting the configuration item as UPPER_CASE (with underbars removed) and " diff --git a/src/dev_tools/utillib/json_value.h b/src/dev_tools/utillib/json_value.h index b96fd39c9d..a0676fe92e 100644 --- a/src/dev_tools/utillib/json_value.h +++ b/src/dev_tools/utillib/json_value.h @@ -38,7 +38,7 @@ enum ValueType { //-------------------------------------------------------------------------------- /** \brief Lightweight wrapper to tag static string. * - * Value constructor and objValType member assignment takes advantage of the + * Value constructor and objValType member assignment take advantage of the * StaticString and avoid the cost of string duplication when storing the * string or the member name. * @@ -511,7 +511,7 @@ class ValueIterator : public ValueIteratorBase { } /*! The return value of non-const iterators can be - * changed, so the these functions are not const + * changed, so these functions are not const * because the returned references/pointers can be used * to change state of the base class. */ diff --git a/test/gold/apps/chifra/chifra_help_chunks.txt b/test/gold/apps/chifra/chifra_help_chunks.txt index 8526de6a80..6e64b40b78 100644 --- a/test/gold/apps/chifra/chifra_help_chunks.txt +++ b/test/gold/apps/chifra/chifra_help_chunks.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_belongs.txt b/test/gold/apps/chunkMan/chunkMan_belongs.txt index 5469d92358..9254937cdb 100644 --- a/test/gold/apps/chunkMan/chunkMan_belongs.txt +++ b/test/gold/apps/chunkMan/chunkMan_belongs.txt @@ -19,7 +19,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_allowed.txt b/test/gold/apps/chunkMan/chunkMan_caps_allowed.txt index 07be2ca084..ce764455d3 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_allowed.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_allowed.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_1.txt b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_1.txt index cf8e9767ed..30904e767d 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_1.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_1.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_2.txt b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_2.txt index a081b5994c..90b1aa1234 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_2.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_2.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_3.txt b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_3.txt index fec2d94bf5..598a01ebc7 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_3.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_3.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_4.txt b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_4.txt index 28f9d3c300..a2a0ccd30e 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_4.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_4.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_5.txt b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_5.txt index 86ec55c178..9330566431 100644 --- a/test/gold/apps/chunkMan/chunkMan_caps_disallowed_5.txt +++ b/test/gold/apps/chunkMan/chunkMan_caps_disallowed_5.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_check_bad.txt b/test/gold/apps/chunkMan/chunkMan_check_bad.txt index ffc8e7a4da..e19c5ca9c9 100644 --- a/test/gold/apps/chunkMan/chunkMan_check_bad.txt +++ b/test/gold/apps/chunkMan/chunkMan_check_bad.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_clean_bad.txt b/test/gold/apps/chunkMan/chunkMan_clean_bad.txt index 4fc5864ce7..bc9669169f 100644 --- a/test/gold/apps/chunkMan/chunkMan_clean_bad.txt +++ b/test/gold/apps/chunkMan/chunkMan_clean_bad.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_belongs_addr_wrong.txt b/test/gold/apps/chunkMan/chunkMan_fail_belongs_addr_wrong.txt index 20e548fb3e..b29ce90d76 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_belongs_addr_wrong.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_belongs_addr_wrong.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_addr.txt b/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_addr.txt index b870c709df..c12c06bb71 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_addr.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_addr.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_blocks.txt b/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_blocks.txt index bff34fe28a..5479724a50 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_blocks.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_belongs_no_blocks.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_belongs_wrong_mode.txt b/test/gold/apps/chunkMan/chunkMan_fail_belongs_wrong_mode.txt index 6072b33421..53f92f53dc 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_belongs_wrong_mode.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_belongs_wrong_mode.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_both.txt b/test/gold/apps/chunkMan/chunkMan_fail_both.txt index 158a2116dc..92625bff00 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_both.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_both.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_detail_belong.txt b/test/gold/apps/chunkMan/chunkMan_fail_detail_belong.txt index 04d5cfc6c4..421faf3d20 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_detail_belong.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_detail_belong.txt @@ -20,7 +20,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_fail_neither.txt b/test/gold/apps/chunkMan/chunkMan_fail_neither.txt index 4c5205d572..e4fa923b37 100644 --- a/test/gold/apps/chunkMan/chunkMan_fail_neither.txt +++ b/test/gold/apps/chunkMan/chunkMan_fail_neither.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_header_csv.txt b/test/gold/apps/chunkMan/chunkMan_header_csv.txt index 93578f856a..94e217607e 100644 --- a/test/gold/apps/chunkMan/chunkMan_header_csv.txt +++ b/test/gold/apps/chunkMan/chunkMan_header_csv.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_header_default.txt b/test/gold/apps/chunkMan/chunkMan_header_default.txt index 1294531ace..e71c85c7d9 100644 --- a/test/gold/apps/chunkMan/chunkMan_header_default.txt +++ b/test/gold/apps/chunkMan/chunkMan_header_default.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_help.txt b/test/gold/apps/chunkMan/chunkMan_help.txt index c9ffc35ca0..b18696939d 100644 --- a/test/gold/apps/chunkMan/chunkMan_help.txt +++ b/test/gold/apps/chunkMan/chunkMan_help.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_help_long.txt b/test/gold/apps/chunkMan/chunkMan_help_long.txt index 296903229c..3a12cc938a 100644 --- a/test/gold/apps/chunkMan/chunkMan_help_long.txt +++ b/test/gold/apps/chunkMan/chunkMan_help_long.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_invalid_param_1.txt b/test/gold/apps/chunkMan/chunkMan_invalid_param_1.txt index 8d0703a127..7389c999b8 100644 --- a/test/gold/apps/chunkMan/chunkMan_invalid_param_1.txt +++ b/test/gold/apps/chunkMan/chunkMan_invalid_param_1.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_list_check.txt b/test/gold/apps/chunkMan/chunkMan_list_check.txt index 620b3c026e..970c33ad24 100644 --- a/test/gold/apps/chunkMan/chunkMan_list_check.txt +++ b/test/gold/apps/chunkMan/chunkMan_list_check.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_no_params.txt b/test/gold/apps/chunkMan/chunkMan_no_params.txt index 4c5205d572..e4fa923b37 100644 --- a/test/gold/apps/chunkMan/chunkMan_no_params.txt +++ b/test/gold/apps/chunkMan/chunkMan_no_params.txt @@ -16,7 +16,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_not_pins_list.txt b/test/gold/apps/chunkMan/chunkMan_not_pins_list.txt index d0f683947f..de1a0e72b7 100644 --- a/test/gold/apps/chunkMan/chunkMan_not_pins_list.txt +++ b/test/gold/apps/chunkMan/chunkMan_not_pins_list.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_not_pins_unpin.txt b/test/gold/apps/chunkMan/chunkMan_not_pins_unpin.txt index 54b76aef4d..8f4d1a4d64 100644 --- a/test/gold/apps/chunkMan/chunkMan_not_pins_unpin.txt +++ b/test/gold/apps/chunkMan/chunkMan_not_pins_unpin.txt @@ -19,7 +19,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad.txt b/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad.txt index 81ca1dbd0a..9a4295e384 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad2.txt b/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad2.txt index 81ca1dbd0a..9a4295e384 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad2.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_chunks_bad2.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_data_bad.txt b/test/gold/apps/chunkMan/chunkMan_pin_data_bad.txt index 2aed8ee619..bb18b931f1 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_data_bad.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_data_bad.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_data_bad2.txt b/test/gold/apps/chunkMan/chunkMan_pin_data_bad2.txt index 091b7f9252..1ee295b811 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_data_bad2.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_data_bad2.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_deep.txt b/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_deep.txt index 010a7ddf81..1b9f852e7f 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_deep.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_deep.txt @@ -19,7 +19,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_pin.txt b/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_pin.txt index 40ac49070e..fccfad4617 100644 --- a/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_pin.txt +++ b/test/gold/apps/chunkMan/chunkMan_pin_rewrite_not_pin.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pins_bad_hash.txt b/test/gold/apps/chunkMan/chunkMan_pins_bad_hash.txt index cf5bdccbfb..713de75348 100644 --- a/test/gold/apps/chunkMan/chunkMan_pins_bad_hash.txt +++ b/test/gold/apps/chunkMan/chunkMan_pins_bad_hash.txt @@ -19,7 +19,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_pins_default.txt b/test/gold/apps/chunkMan/chunkMan_pins_default.txt index c0d8141a40..77ca0b1307 100644 --- a/test/gold/apps/chunkMan/chunkMan_pins_default.txt +++ b/test/gold/apps/chunkMan/chunkMan_pins_default.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_remote_fail.txt b/test/gold/apps/chunkMan/chunkMan_remote_fail.txt index 0b770b6f18..8a6b1c37c2 100644 --- a/test/gold/apps/chunkMan/chunkMan_remote_fail.txt +++ b/test/gold/apps/chunkMan/chunkMan_remote_fail.txt @@ -17,7 +17,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_tag_invalid.txt b/test/gold/apps/chunkMan/chunkMan_tag_invalid.txt index 259dc7e377..08fc337c21 100644 --- a/test/gold/apps/chunkMan/chunkMan_tag_invalid.txt +++ b/test/gold/apps/chunkMan/chunkMan_tag_invalid.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive) diff --git a/test/gold/apps/chunkMan/chunkMan_tag_invalid_mode.txt b/test/gold/apps/chunkMan/chunkMan_tag_invalid_mode.txt index ab33146aa4..b66ac56ed9 100644 --- a/test/gold/apps/chunkMan/chunkMan_tag_invalid_mode.txt +++ b/test/gold/apps/chunkMan/chunkMan_tag_invalid_mode.txt @@ -18,7 +18,7 @@ Flags: -p, --publish publish the manifest to the Unchained Index smart contract -P, --publisher string for some query options, the publisher of the index (hidden) -n, --truncate uint truncate the entire index at this block (requires a block identifier) (hidden) - -r, --remote prior to processing, retreive the manifest from the Unchained Index smart contract + -r, --remote prior to processing, retrieve the manifest from the Unchained Index smart contract -b, --belongs strings in index mode only, checks the address(es) for inclusion in the given index chunk -f, --diff compare two index portions (see notes) (hidden) -F, --first_block uint first block to process (inclusive)