@portal-hq/provider 0.2.27 → 0.2.29

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/types.d.ts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@portal-hq/provider",
3
- "version": "0.2.27",
3
+ "version": "0.2.29",
4
4
  "license": "MIT",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/esm/index",
@@ -19,7 +19,7 @@
19
19
  "test": "jest"
20
20
  },
21
21
  "dependencies": {
22
- "@portal-hq/utils": "^0.2.27"
22
+ "@portal-hq/utils": "^0.2.29"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@babel/preset-typescript": "^7.18.6",
package/types.d.ts CHANGED
@@ -67,10 +67,12 @@ export interface SignResult {
67
67
  S: string
68
68
  }
69
69
 
70
- export interface SignerOptions {}
70
+ export interface SignerOptions { }
71
71
 
72
72
  export interface SigningRequestParams {
73
- gas?: string
73
+ gasLimit?: string
74
+ gasPrice?: string
75
+ [key: string]: any
74
76
  }
75
77
 
76
78
  export interface SigningResponse {