File tree 2 files changed +4
-5
lines changed
packages/plugin-tee/src/vendors
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 48
48
49
49
- [ Python 2.7+] ( https://www.python.org/downloads/ )
50
50
- [ Node.js 23+] ( https://docs.npmjs.com/downloading-and-installing-node-js-and-npm )
51
- - [ bun] ( https://bun.io /installation )
51
+ - [ bun] ( https://bun.sh/docs /installation )
52
52
53
53
> ** Note for Windows Users:** [ WSL 2] ( https://learn.microsoft.com/en-us/windows/wsl/install-manual ) is required.
54
54
Original file line number Diff line number Diff line change 1
- import { TeeVendors } from '@elizaos/core' ;
2
1
import { phalaRemoteAttestationAction as remoteAttestationAction } from '../actions/remoteAttestationAction' ;
3
2
import { phalaDeriveKeyProvider as deriveKeyProvider } from '../providers/deriveKeyProvider' ;
4
3
import { phalaRemoteAttestationProvider as remoteAttestationProvider } from '../providers/remoteAttestationProvider' ;
5
- import type { TeeVendor } from './types' ;
4
+ import { type TeeVendor , TeeVendorNames } from './types' ;
6
5
7
6
/**
8
7
* A class representing a vendor for Phala TEE.
9
8
* * @implements { TeeVendor }
10
- * @type {TeeVendors .PHALA }
9
+ * @type {TeeVendorNames .PHALA }
11
10
*/ /**
12
11
* Get the actions for the PhalaVendor.
13
12
* * @returns { Array } An array of actions.
@@ -22,7 +21,7 @@ import type { TeeVendor } from './types';
22
21
* * @returns { string } The description of the vendor.
23
22
*/
24
23
export class PhalaVendor implements TeeVendor {
25
- type = TeeVendors . PHALA ;
24
+ type = TeeVendorNames . PHALA ;
26
25
27
26
/**
28
27
* Returns an array of actions.
You can’t perform that action at this time.
0 commit comments