@portal-hq/provider 0.2.1 → 0.2.3

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.
@@ -27,11 +27,6 @@ const signerMethods = [
27
27
  'eth_signTypedData',
28
28
  'personal_sign',
29
29
  ];
30
- const solanaSignerMethods = [
31
- 'requestAirdrop',
32
- 'sendTransaction',
33
- 'simulateTransaction',
34
- ];
35
30
  class Provider {
36
31
  constructor({
37
32
  // Required options
@@ -25,11 +25,6 @@ const signerMethods = [
25
25
  'eth_signTypedData',
26
26
  'personal_sign',
27
27
  ];
28
- const solanaSignerMethods = [
29
- 'requestAirdrop',
30
- 'sendTransaction',
31
- 'simulateTransaction',
32
- ];
33
28
  class Provider {
34
29
  constructor({
35
30
  // Required options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@portal-hq/provider",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "license": "MIT",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -17,7 +17,7 @@
17
17
  "prepare:esm": "tsc --outDir lib/esm --module es2015 --target es2015"
18
18
  },
19
19
  "dependencies": {
20
- "@portal-hq/utils": "^0.2.1"
20
+ "@portal-hq/utils": "^0.2.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "typescript": "^4.8.4"
@@ -35,12 +35,6 @@ const signerMethods = [
35
35
  'personal_sign',
36
36
  ]
37
37
 
38
- const solanaSignerMethods = [
39
- 'requestAirdrop',
40
- 'sendTransaction',
41
- 'simulateTransaction',
42
- ]
43
-
44
38
  class Provider {
45
39
  public readonly mpcUrl: string
46
40
  public readonly portal: HttpRequester