You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/kernel_types.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
usecrate::kinode::process::standard as wit;
1
+
usecrate::hyperware::process::standard as wit;
2
2
usecrate::{Address,ProcessId};
3
3
use serde::{Deserialize,Serialize};
4
4
use std::collections::{HashMap,HashSet};
@@ -7,7 +7,7 @@ use std::hash::{Hash, Hasher};
7
7
//
8
8
// process-facing kernel types, used for process
9
9
// management and message-passing
10
-
// matches types in kinode.wit
10
+
// matches types in hyperware.wit
11
11
//
12
12
13
13
pubtypeContext = Vec<u8>;
@@ -265,7 +265,7 @@ impl StateError {
265
265
// package types
266
266
//
267
267
268
-
/// Represents the metadata associated with a kinode package, which is an ERC721 compatible token.
268
+
/// Represents the metadata associated with a hyperware package, which is an ERC721 compatible token.
269
269
/// This is deserialized from the `metadata.json` file in a package.
270
270
/// Fields:
271
271
/// - `name`: An optional field representing the display name of the package. This does not have to be unique, and is not used for identification purposes.
@@ -284,7 +284,7 @@ pub struct Erc721Metadata {
284
284
pubproperties:Erc721Properties,
285
285
}
286
286
287
-
/// Represents critical fields of a kinode package in an ERC721 compatible format.
287
+
/// Represents critical fields of a hyperware package in an ERC721 compatible format.
288
288
/// This follows the [ERC1155](https://github.com/ethereum/ercs/blob/master/ERCS/erc-1155.md#erc-1155-metadata-uri-json-schema) metadata standard.
0 commit comments