Skip to content

Commit

Permalink
chore: package bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRalee committed Jul 15, 2024
1 parent dd32511 commit b572e23
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/sdk-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@ethersproject/bytes": "^5.7.0",
"@injectivelabs/core-proto-ts": "^0.0.25",
"@injectivelabs/core-proto-ts": "0.0.26",
"@injectivelabs/dmm-proto-ts": "1.0.20",
"@injectivelabs/exceptions": "^1.14.13-beta.0",
"@injectivelabs/grpc-web": "^0.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ export declare namespace MsgInstantSpotMarketLaunch {
minNotional: string
minPriceTickSize: string
minQuantityTickSize: string
makerFeeRate: string
takerFeeRate: string
}
}

Expand All @@ -32,8 +30,6 @@ const createMessage = (params: MsgInstantSpotMarketLaunch.Params) => {
message.minPriceTickSize = params.market.minPriceTickSize
message.minQuantityTickSize = params.market.minQuantityTickSize
message.minNotional = params.market.minNotional
message.makerFeeRate = params.market.makerFeeRate
message.takerFeeRate = params.market.takerFeeRate

return InjectiveExchangeV1Beta1Tx.MsgInstantSpotMarketLaunch.fromPartial(
message,
Expand Down Expand Up @@ -69,12 +65,6 @@ export default class MsgInstantSpotMarketLaunch extends MsgBase<
minNotional: amountToCosmosSdkDecAmount(
initialParams.market.minNotional,
).toFixed(),
makerFeeRate: amountToCosmosSdkDecAmount(
initialParams.market.makerFeeRate,
).toFixed(),
takerFeeRate: amountToCosmosSdkDecAmount(
initialParams.market.takerFeeRate,
).toFixed(),
},
} as MsgInstantSpotMarketLaunch.Params

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2174,10 +2174,10 @@
resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340"
integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==

"@injectivelabs/core-proto-ts@^0.0.25":
version "0.0.25"
resolved "https://registry.yarnpkg.com/@injectivelabs/core-proto-ts/-/core-proto-ts-0.0.25.tgz#dbfff318b3c8e7f1731496277c33ac81ec15ee57"
integrity sha512-2RB4vJPqK960wO5HWZPdtbIG6005kwzqHLquL+78tNJjiyyvr4mW6UTq9PUz5N1JXrDtzUrCbE8cqVA0OvVZPw==
"@injectivelabs/core-proto-ts@0.0.26":
version "0.0.26"
resolved "https://registry.yarnpkg.com/@injectivelabs/core-proto-ts/-/core-proto-ts-0.0.26.tgz#b986d3c50f983a5fb740d88710f729c373317eee"
integrity sha512-s51bQMj8s2G1+EydGnWitfhlnh9/5bExSW0+GrZEhZy22BmXK1AR9SPak20efj2VyzRRv0rj17GG1ck9PNUUGQ==
dependencies:
"@injectivelabs/grpc-web" "^0.0.1"
google-protobuf "^3.14.0"
Expand Down

0 comments on commit b572e23

Please sign in to comment.