@thesingularitynetwork/darkswap-sdk 0.1.27 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.1.27",
7
+ "version": "0.1.28",
8
8
  "description": "DarkSwap SDK for browser and Node.js",
9
9
  "main": "dist/index.js",
10
10
  "typings": "dist/index.d.ts",
@@ -1,9 +0,0 @@
1
- import { ethers } from "ethers";
2
- import { DarkSwap } from "../../src";
3
- export declare function getAliceWallet(): ethers.Wallet;
4
- export declare function getBobWallet(): ethers.Wallet;
5
- export declare function getAliceSignature(): Promise<string>;
6
- export declare function getBobSignature(): Promise<string>;
7
- export declare function getAliceWalletBalance(asset: string): Promise<any>;
8
- export declare function getDarkSwapForAlice(): DarkSwap;
9
- export declare function getDarkSwapForBob(): DarkSwap;