Skip to content

Commit a572000

Browse files
authored
Merge pull request #177 from fireflyprotocol/kulsoom/patch-bug
fix harcoded id
2 parents cccc86c + b548e4c commit a572000

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ts/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bluefin-exchange/pro-sdk",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "OpenAPI client for @bluefin-exchange/pro-sdk",
55
"author": "Bluefin",
66
"repository": {

ts/sdk/src/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,6 @@ export class BluefinProSdk {
336336
private async setContractsConfig() {
337337
const response = await this.exchangeDataApi.getExchangeInfo();
338338
this.contractsConfig = response.data.contractsConfig;
339-
this.contractsConfig!.currentContractAddress = '0x3b985440fbf1624ec97932fce729a27c5fbea74a1d1781cee3f64fcb22c9cfef';
340339
this.assets = response.data.assets;
341340
}
342341

@@ -727,6 +726,7 @@ export class BluefinProSdk {
727726
}
728727

729728
public async deposit(amountE9: string, accountAddress?: string, args?: { sponsored?: boolean, fallbackToExecuteTx?: boolean }) {
729+
console.log('mk1 - deposit', amountE9, accountAddress, args);
730730
const assetSymbol = 'USDC';
731731
const txb = new TransactionBlock();
732732
const assetType = this.assets?.find(

0 commit comments

Comments
 (0)