Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardMikhrin committed Jan 31, 2025
2 parents e4ef8ec + e99cf29 commit 0031cff
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 114 deletions.
20 changes: 10 additions & 10 deletions docs/static/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1779,8 +1779,6 @@ paths:
type: string
deposit_amount:
type: string
withdrawal_amount:
type: string
depositor:
type: string
receiver:
Expand All @@ -1795,6 +1793,8 @@ paths:
type: string
is_wrapped:
type: boolean
withdrawal_amount:
type: string
description: Transactions is a list of transactions.
pagination:
type: object
Expand Down Expand Up @@ -2098,8 +2098,6 @@ paths:
type: string
deposit_amount:
type: string
withdrawal_amount:
type: string
depositor:
type: string
receiver:
Expand All @@ -2114,6 +2112,8 @@ paths:
type: string
is_wrapped:
type: boolean
withdrawal_amount:
type: string
description: >-
QueryTransactionByIdResponse is response type for the
Query/TransactionById RPC method.
Expand Down Expand Up @@ -49572,8 +49572,6 @@ definitions:
type: string
deposit_amount:
type: string
withdrawal_amount:
type: string
depositor:
type: string
receiver:
Expand All @@ -49588,6 +49586,8 @@ definitions:
type: string
is_wrapped:
type: boolean
withdrawal_amount:
type: string
description: >-
QueryTransactionByIdResponse is response type for the
Query/TransactionById RPC method.
Expand All @@ -49613,8 +49613,6 @@ definitions:
type: string
deposit_amount:
type: string
withdrawal_amount:
type: string
depositor:
type: string
receiver:
Expand All @@ -49629,6 +49627,8 @@ definitions:
type: string
is_wrapped:
type: boolean
withdrawal_amount:
type: string
description: Transactions is a list of transactions.
pagination:
type: object
Expand Down Expand Up @@ -49733,8 +49733,6 @@ definitions:
type: string
deposit_amount:
type: string
withdrawal_amount:
type: string
depositor:
type: string
receiver:
Expand All @@ -49749,6 +49747,8 @@ definitions:
type: string
is_wrapped:
type: boolean
withdrawal_amount:
type: string
cosmos.base.query.v1beta1.PageRequest:
type: object
properties:
Expand Down
16 changes: 8 additions & 8 deletions proto/bridge/models/transaction.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ message Transaction {
uint64 deposit_block = 4;
string deposit_token = 5;
string deposit_amount = 6;
string withdrawal_amount = 7;
string depositor = 8;
string receiver = 9;
string withdrawal_chain_id = 10;
string withdrawal_tx_hash = 11;
string withdrawal_token = 12;
string signature = 13;
bool is_wrapped = 14;
string depositor = 7;
string receiver = 8;
string withdrawal_chain_id = 9;
string withdrawal_tx_hash = 10;
string withdrawal_token = 11;
string signature = 12;
bool is_wrapped = 13;
string withdrawal_amount = 14;
}
Loading

0 comments on commit 0031cff

Please sign in to comment.