Skip to content

Commit

Permalink
Fix incorrect native function name in getCurrentUnstaking (#206)
Browse files Browse the repository at this point in the history
* Fix incorrect native function name in getCurrentUnstaking

* Bump version
  • Loading branch information
ruixhuang authored Jul 24, 2024
1 parent f1beba7 commit 06f9c28
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions v4-client-js/__native__/__ios__/v4-native-client.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions v4-client-js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion v4-client-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dydxprotocol/v4-client-js",
"version": "1.1.28",
"version": "1.1.29",
"description": "General client library for the new dYdX system (v4 decentralized)",
"main": "build/src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion v4-client-js/src/clients/native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ export async function getDelegatorDelegations(payload: string): Promise<string>
}
}

export async function getDelegatorUnbondingDelegations(payload: string): Promise<string> {
export async function getCurrentUnstaking(payload: string): Promise<string> {
try {
const client = globalThis.client;
if (client === undefined) {
Expand Down

0 comments on commit 06f9c28

Please sign in to comment.