Skip to content

Commit

Permalink
Merge pull request #125 from mysteriumnetwork/improvements/tokens
Browse files Browse the repository at this point in the history
Use Tokens in current prices response
  • Loading branch information
mdomasevicius authored Apr 15, 2022
2 parents b07c912 + 4d291e2 commit 2b51f4d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/prices/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { Tokens } from '../common/tokens'

export interface CurrentPricesResponse {
/**
* @deprecated
*/
pricePerHour: bigint
/**
* @deprecated
*/
pricePerGib: bigint

pricePerHourTokens: Tokens
pricePerGibTokens: Tokens
}

0 comments on commit 2b51f4d

Please sign in to comment.