Skip to content

Commit

Permalink
chore: package bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRalee committed Sep 14, 2023
1 parent 7e042f2 commit 5efd0c9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/sdk-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
"@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
"@injectivelabs/indexer-proto-ts": "1.11.9",
"@injectivelabs/mito-proto-ts": "1.0.43",
"@injectivelabs/mito-proto-ts": "1.0.45",
"@injectivelabs/networks": "^1.12.2-beta.4",
"@injectivelabs/test-utils": "^1.12.1",
"@injectivelabs/token-metadata": "^1.12.2-beta.9",
Expand Down
6 changes: 6 additions & 0 deletions packages/sdk-ts/src/client/indexer/grpc/IndexerGrpcMitoApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -701,11 +701,13 @@ export class IndexerGrpcMitoApi extends BaseGrpcConsumer {
limit,
toNumber,
accountAddress,
ownerAddress,
}: {
status?: string
limit?: number
toNumber?: number
accountAddress?: string
ownerAddress?: string
} = {}) {
const request = MitoApi.ListIDOsRequest.create()

Expand All @@ -725,6 +727,10 @@ export class IndexerGrpcMitoApi extends BaseGrpcConsumer {
request.accountAddress = accountAddress
}

if (ownerAddress) {
request.ownerAddress = ownerAddress
}

try {
const response = await this.retry<MitoApi.ListIDOsResponse>(() =>
this.client.ListIDOs(request),
Expand Down
2 changes: 1 addition & 1 deletion packages/token-metadata/src/tokens/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ export default {
PROJ: {
name: 'PROJ',
logo: 'projx.png',
symbol: 'Proj',
symbol: 'PROJ',
decimals: 6,
coinGeckoId: '',
},
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2166,10 +2166,10 @@
protobufjs "^7.0.0"
rxjs "^7.4.0"

"@injectivelabs/mito-proto-ts@1.0.43":
version "1.0.43"
resolved "https://registry.yarnpkg.com/@injectivelabs/mito-proto-ts/-/mito-proto-ts-1.0.43.tgz#2dab228c4ef7cb40d2a7562afddc898592116fd9"
integrity sha512-w2FRECf0KmqhyID6iwKoQj366mSy1URjoWlf3sueM2s4xXee/J2fzYT4JOjt1wK8taLQ/gbIWP8FMTtUvh/+2w==
"@injectivelabs/mito-proto-ts@1.0.45":
version "1.0.45"
resolved "https://registry.yarnpkg.com/@injectivelabs/mito-proto-ts/-/mito-proto-ts-1.0.45.tgz#1d2f7bb2d91de5ee87801815178090878533287f"
integrity sha512-YFyT+7d09VFGuwE7UXBkfK+XlU/MNc7ZM0UKB460I3zB1yXU7RttME5eM8W2eJvej04cf109DlZVG4yAw60gZA==
dependencies:
"@injectivelabs/grpc-web" "^0.0.1"
google-protobuf "^3.14.0"
Expand Down

0 comments on commit 5efd0c9

Please sign in to comment.