Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ jobs:
fail-fast: false
matrix:
config:
- { name: cre, file: chip-cre.json }
- { name: platform, file: chip-platform.json }
- { name: cre, dir: workflows, file: chip-cre.json }
- { name: platform, dir: workflows, file: chip-platform.json }
- { name: svr, dir: svr, file: chip-svr.json }

steps:
- uses: actions/checkout@v5
Expand All @@ -43,8 +44,8 @@ jobs:
with:
aws-account-id: ${{ secrets.AWS_ACCOUNT_ID_ROOT }}
aws-region: us-west-2
chip-schema-dir: "workflows"
chip-config-file-path: "workflows/${{ matrix.config.file }}"
chip-schema-dir: ${{ matrix.config.dir }}
chip-config-file-path: "${{ matrix.config.dir }}/${{ matrix.config.file }}"
chip-config-host: ${{ github.ref_name == 'master' && secrets.chip_config_host_prod || secrets.chip_config_host_staging }}
chip-config-user: ${{ secrets.chip_config_user }}
chip-config-password: ${{ github.ref_name == 'master' && secrets.chip_config_password_prod || secrets.chip_config_password_staging }}
Expand Down
3 changes: 3 additions & 0 deletions svr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ deploy-prod:

destroy-prod:
iron-flask deploy-all -e prod -c ./iron-flask.yaml --destroy

generate:
go generate ./...
9 changes: 9 additions & 0 deletions svr/chip-svr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"domain": "svr",
"schemas": [
{
"entity": "svr.v1.FastlaneAtlasError",
"path": "svr/v1/fastlane_atlas_error.proto"
}
]
}

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

216 changes: 216 additions & 0 deletions svr/svr/v1/fastlane_atlas_error.pb.go

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

19 changes: 19 additions & 0 deletions svr/svr/v1/fastlane_atlas_error.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
syntax = "proto3";

package svr.v1;

option go_package = "github.com/smartcontractkit/chainlink-protos/svr/v1";

message FastLaneAtlasError {
string chain_id = 1;
string from_address = 2;
string to_address = 3;
string feed_address = 4;
string nonce = 5;
string error_type = 6;
string error_message = 7;
int32 http_status_code = 8;
int64 transaction_id = 9;
string atlas_url = 10;
int64 created_at = 11;
}
Loading
Loading