Skip to content

Commit

Permalink
Merge branch 'development' into feat/token_list_migration
Browse files Browse the repository at this point in the history
  • Loading branch information
nikspz committed Jul 6, 2023
2 parents 243531c + 8971533 commit 6ed3a79
Show file tree
Hide file tree
Showing 60 changed files with 1,569 additions and 2,469 deletions.
73 changes: 0 additions & 73 deletions docs/swagger/algorand-routes.yml

This file was deleted.

36 changes: 26 additions & 10 deletions docs/swagger/evm-routes.yml → docs/swagger/chain-routes.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
paths:
/evm/nonce:
/chain/nonce:
post:
tags:
- 'evm'
- 'chain'
summary: 'Get the current nonce for the provided private key'
operationId: 'nonce'
consumes:
Expand All @@ -20,10 +20,10 @@ paths:
schema:
$ref: '#/definitions/NonceResponse'

/evm/nextNonce:
/chain/nextNonce:
post:
tags:
- 'evm'
- 'chain'
summary: 'Get the next nonce for the provided private key'
operationId: 'nonce'
consumes:
Expand All @@ -41,10 +41,10 @@ paths:
schema:
$ref: '#/definitions/NonceResponse'

/evm/allowances:
/chain/allowances:
post:
tags:
- 'evm'
- 'chain'
summary: 'Get the ERC20 allowances for a spender on a given private key'
operationId: 'allowances'
consumes:
Expand All @@ -61,10 +61,10 @@ paths:
'200':
schema:
$ref: '#/definitions/AllowancesResponse'
/evm/approve:
/chain/approve:
post:
tags:
- 'evm'
- 'chain'
summary: 'Create an ERC20 approval for a spender on an private key'
operationId: 'approve'
consumes:
Expand All @@ -82,10 +82,10 @@ paths:
schema:
$ref: '#/definitions/ApproveResponse'

/evm/cancel:
/chain/cancel:
post:
tags:
- 'evm'
- 'chain'
summary: 'Cancel transaction'
operationId: 'cancel'
consumes:
Expand All @@ -102,3 +102,19 @@ paths:
'200':
schema:
$ref: '#/definitions/CancelResponse'

/chain/transfer:
post:
tags:
- 'chain'
summary: 'Transfer balance'
parameters:
- in: 'body'
name: 'body'
required: true
schema:
$ref: '#/definitions/TransferRequest'
produces:
- 'application/json'
responses:
'200'
57 changes: 0 additions & 57 deletions docs/swagger/cosmos-routes.yml

This file was deleted.

Loading

0 comments on commit 6ed3a79

Please sign in to comment.