Skip to content

Commit

Permalink
fix: include all services
Browse files Browse the repository at this point in the history
  • Loading branch information
bangjelkoski committed Feb 8, 2022
1 parent 74f5099 commit 9fa30bd
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 3 deletions.
22 changes: 22 additions & 0 deletions packages/ui-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.4](https://github.com/InjectiveLabs/injective-ts/compare/@injectivelabs/ui-common@0.0.2...@injectivelabs/ui-common@0.0.4) (2022-02-08)


### Bug Fixes

* include all services ([eb8a9d0](https://github.com/InjectiveLabs/injective-ts/commit/eb8a9d0d728ada9fbe4bfbed157a7e9e773c8608))





## [0.0.3](https://github.com/InjectiveLabs/injective-ts/compare/@injectivelabs/ui-common@0.0.2...@injectivelabs/ui-common@0.0.3) (2022-02-08)


### Bug Fixes

* include all services ([d2157e0](https://github.com/InjectiveLabs/injective-ts/commit/d2157e0ef99bb138ba6f44e91dc5266bf16a6a79))





## 0.0.2 (2022-02-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/ui-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@injectivelabs/ui-common",
"description": "Reusable Vue Components, Vuex Store Modules, Composables, and more",
"version": "0.0.2",
"version": "0.0.4",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/ui-common/src/bridge/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import { BridgeTransformer } from './transformer'
import { MetricsProvider } from '../providers/MetricsProvider'
import { ExchangeMetrics } from '../types/metrics'
import { ApolloConsumer } from '../gql/client'
import { ApolloConsumer } from './gql/client'
import { ServiceOptions } from '../types'

export const computeLatestTransactions = ({
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-common/src/bridge/transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
BridgeTransactionState,
BridgingNetwork,
} from './types'
import { UserDeposit } from '../gql/types'
import { UserDeposit } from './gql/types'
import {
getExplorerUrl,
getCosmosExplorerUrl,
Expand Down
4 changes: 4 additions & 0 deletions packages/ui-common/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
export * from './address'
export * from './bank'
export * from './bridge'
export * from './peggy'
export * from './token'
export * from './types'

0 comments on commit 9fa30bd

Please sign in to comment.