-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/litener #1
Merged
Merged
Changes from 8 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
cfab48e
auto init listeners
MarkCherepovskyi bf556f4
update interface
MarkCherepovskyi b476a4b
implemen endpoints
MarkCherepovskyi e473ed1
update db calls
MarkCherepovskyi b8efcf2
thread safe map
MarkCherepovskyi 4ddd20c
implement init from config and get tx by address from event
MarkCherepovskyi f32f1ae
update listener
MarkCherepovskyi da74e01
update db and implement logs decoder
MarkCherepovskyi cc82b77
hot fix: update db call and modify response
MarkCherepovskyi 506d3b6
add ci
MarkCherepovskyi 715b8b4
update werf ci
MarkCherepovskyi 349c9e5
update ci
MarkCherepovskyi 230ebe6
modify werf
MarkCherepovskyi 094cbe1
modify werf
MarkCherepovskyi d528e76
modify ci
MarkCherepovskyi 796dc01
Update werf.yaml
alexvarko df6f1ff
Update werf.yaml
alexvarko 1118a0a
update go version
MarkCherepovskyi af9e12c
move abi to pkg
MarkCherepovskyi df544fd
move path to file in config
MarkCherepovskyi 08f4092
update db: add tx from and to
MarkCherepovskyi f518a7f
get sender, index transactions on destination chain
MarkCherepovskyi a8fdf9b
style fix, db
MarkCherepovskyi ecf643a
udpate db and assets
MarkCherepovskyi 7e7e9ef
style fix: func order
MarkCherepovskyi 8edad30
implemnt restart
MarkCherepovskyi cc5e89c
add response and restart listener
MarkCherepovskyi e2fe9c2
remove logs
MarkCherepovskyi 9357c85
update modify ticker
MarkCherepovskyi f386b1e
indexer
MarkCherepovskyi 153a595
update indexer: index all txs
MarkCherepovskyi edf9042
update werf: remove imports
MarkCherepovskyi c86b904
modify response
MarkCherepovskyi 7b80f4f
hot fix: update response
MarkCherepovskyi 700555b
hot fix: logs...
MarkCherepovskyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/GetTxListKey' | ||
- type: object | ||
required: | ||
- attributes | ||
- relationship | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- transactions | ||
properties: | ||
transactions: | ||
type: array | ||
items: | ||
type: object | ||
$ref: '#/components/schemas/TxBlob' | ||
relationship: | ||
type: object | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should be jsonapi |
||
required: | ||
- address: | ||
properties: | ||
address : | ||
type: string | ||
example: 0x1234..... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- transactions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
type: object | ||
required: | ||
- payment_id | ||
- tx_hash | ||
- recipient | ||
- network | ||
properties: | ||
payment_id: | ||
type: string | ||
recipient: | ||
type: string | ||
tx_hash: | ||
type: string | ||
network: | ||
type: string |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keys