Skip to content

Commit 0dc31b0

Browse files
authored
Merge branch 'v2-develop' into tcm/client-room3
2 parents 4cecdaa + c96040b commit 0dc31b0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
- [Python 2.7+](https://www.python.org/downloads/)
5050
- [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)
5252

5353
> **Note for Windows Users:** [WSL 2](https://learn.microsoft.com/en-us/windows/wsl/install-manual) is required.
5454

packages/plugin-tee/src/vendors/phala.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { TeeVendors } from '@elizaos/core';
21
import { phalaRemoteAttestationAction as remoteAttestationAction } from '../actions/remoteAttestationAction';
32
import { phalaDeriveKeyProvider as deriveKeyProvider } from '../providers/deriveKeyProvider';
43
import { phalaRemoteAttestationProvider as remoteAttestationProvider } from '../providers/remoteAttestationProvider';
5-
import type { TeeVendor } from './types';
4+
import { type TeeVendor, TeeVendorNames } from './types';
65

76
/**
87
* A class representing a vendor for Phala TEE.
98
* * @implements { TeeVendor }
10-
* @type {TeeVendors.PHALA}
9+
* @type {TeeVendorNames.PHALA}
1110
*//**
1211
* Get the actions for the PhalaVendor.
1312
* * @returns { Array } An array of actions.
@@ -22,7 +21,7 @@ import type { TeeVendor } from './types';
2221
* * @returns { string } The description of the vendor.
2322
*/
2423
export class PhalaVendor implements TeeVendor {
25-
type = TeeVendors.PHALA;
24+
type = TeeVendorNames.PHALA;
2625

2726
/**
2827
* Returns an array of actions.

0 commit comments

Comments
 (0)