@clarigen/core 0.3.2 → 0.3.4

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.
@@ -41,6 +41,8 @@ export declare type TransactionReceipt<Ok, Err> = WebTransactionReceipt<Ok, Err>
41
41
  export interface WebSignerOptions {
42
42
  postConditionMode?: PostConditionMode;
43
43
  postConditions?: PostCondition[];
44
+ sponsored?: boolean;
45
+ fee?: number;
44
46
  }
45
47
  export interface TestSignerOptions {
46
48
  sender: string;
@@ -49,6 +51,8 @@ export interface NodeSignerOptions {
49
51
  postConditionMode?: PostConditionMode;
50
52
  nonce?: number;
51
53
  postConditions?: PostCondition[];
54
+ sponsored?: boolean;
55
+ fee?: number;
52
56
  }
53
57
  export declare type SubmitOptions = TestSignerOptions | WebSignerOptions | NodeSignerOptions;
54
58
  export declare type Submitter<Ok, Err> = (options: SubmitOptions) => Promise<TransactionReceipt<Ok, Err>>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.2",
2
+ "version": "0.3.4",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
@@ -32,5 +32,5 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "5625d6c342e16966b58c08103f459aaf322158ab"
35
+ "gitHead": "0c085b1ac4b8b2ad6d2d4d321911720c6a656e09"
36
36
  }