+
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: Tests
on:
pull_request:

env:
# A stable environment for PRs.
# Set CHANNEL to nightly and update CI_E2E_FILENAME when adding a new feature.
# Change back to stable once the new feature is released.
CI_E2E_FILENAME: "f55ae1c8/rel-nightly"
CHANNEL: nightly
jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -19,11 +25,10 @@ jobs:
- name: Install python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.x'

- name: Install algod
run: |
CHANNEL="stable"
wget https://raw.githubusercontent.com/algorand/go-algorand/rel/stable/cmd/updater/update.sh && chmod 744 update.sh
./update.sh -i -c "$CHANNEL" -n -d ./ -p "$RUNNER_WORKSPACE/algod_bin"
ls "$RUNNER_WORKSPACE/algod_bin"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export GOPATH := $(shell go env GOPATH)
GOPATH1 := $(firstword $(subst :, ,$(GOPATH)))

# pinned filename can be overridden in CI with an env variable.
CI_E2E_FILENAME ?= f99e7b0c/rel-nightly
CI_E2E_FILENAME ?= f55ae1c8/rel-nightly

GOLDFLAGS += -X github.com/algorand/conduit/version.Hash=$(shell git log -n 1 --pretty="%H")
GOLDFLAGS += -X github.com/algorand/conduit/version.ShortHash=$(shell git log -n 1 --pretty="%h")
Expand Down
2 changes: 2 additions & 0 deletions conduit/plugins/processors/filterprocessor/Filter_tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
|apid|ApplyData.ApplicationID|
|ca|ApplyData.ClosingAmount|
|caid|ApplyData.ConfigAsset|
|lsig.lmsig.thr|SignedTxn.Lsig.LMsig.Threshold|
|lsig.lmsig.v|SignedTxn.Lsig.LMsig.Version|
|lsig.msig.thr|SignedTxn.Lsig.Msig.Threshold|
|lsig.msig.v|SignedTxn.Lsig.Msig.Version|
|msig.thr|SignedTxn.Msig.Threshold|
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions conduit/plugins/processors/filterprocessor/gen/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ var ignoreTags = map[string]bool{
// no point to filtering on a lease
"txn.lx": true,
// no point to filter on signatures
"sig": true,
"msig.subsig": true,
"lsig.sig": true,
"lsig.arg": true,
"lsig.l": true,
"lsig.msig.subsig": true,
"sig": true,
"lmsig.subsig": true,
"msig.subsig": true,
"lsig.sig": true,
"lsig.arg": true,
"lsig.l": true,
"lsig.lmsig.subsig": true,
"lsig.msig.subsig": true,
// no point in filtering on keys
"txn.votekey": true,
"txn.selkey": true,
Expand Down Expand Up @@ -54,6 +56,7 @@ var ignoreTags = map[string]bool{
"txn.apaa": true,
"txn.apat": true,
"txn.apfa": true,
"txn.al": true,
"txn.apbx": true,
"txn.apas": true,
"txn.apap": true,
Expand Down
32 changes: 17 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ go 1.23.0
toolchain go1.23.3

require (
github.com/algorand/go-algorand-sdk/v2 v2.9.2-0.20250611180312-61ad62f81280
github.com/algorand/go-algorand-sdk/v2 v2.10.1-0.20250829133552-9b5242cd2eb6
github.com/algorand/go-codec/codec v1.1.10
github.com/algorand/indexer/v3 v3.7.3-0.20250612210424-b83805117377
github.com/algorand/indexer/v3 v3.8.2-0.20250829201002-ffff8a8aa81d
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v4 v4.18.2
github.com/opensearch-project/opensearch-go/v2 v2.3.0
github.com/prometheus/client_golang v1.19.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.9.0
github.com/stretchr/testify v1.10.0
github.com/yuin/goldmark v1.5.4
gopkg.in/yaml.v3 v3.0.1

Expand All @@ -31,19 +31,18 @@ require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/docker v27.3.1+incompatible // indirect
github.com/docker/docker v28.0.0+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/getkin/kin-openapi v0.107.0 // indirect
github.com/getkin/kin-openapi v0.131.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/invopop/yaml v0.1.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.3 // indirect
github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451 // indirect
Expand All @@ -54,17 +53,20 @@ require (
github.com/jackc/pgtype v1.14.0 // indirect
github.com/jackc/puddle v1.3.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/labstack/echo/v4 v4.12.0 // indirect
github.com/labstack/echo/v4 v4.13.4 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/orlangure/gnomock v0.31.0 // indirect
github.com/perimeterx/marshmallow v1.1.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
Expand All @@ -85,10 +87,10 @@ require (
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.35.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/crypto v0.38.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.25.0 // indirect
google.golang.org/protobuf v1.35.2 // indirect
)
Loading
Loading
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载