-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbindings.json
36 lines (36 loc) · 1.07 KB
/
bindings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"entrypoint": "chia_sdk_bindings",
"pymodule": "chia_wallet_sdk",
"napi": {
"Bytes32": "napi::bindgen_prelude::Uint8Array",
"Bytes48": "napi::bindgen_prelude::Uint8Array",
"Bytes96": "napi::bindgen_prelude::Uint8Array",
"BytesImpl<33>": "napi::bindgen_prelude::Uint8Array",
"BytesImpl<64>": "napi::bindgen_prelude::Uint8Array",
"Bytes": "napi::bindgen_prelude::Uint8Array",
"TreeHash": "napi::bindgen_prelude::Uint8Array",
"SerializedProgram": "napi::bindgen_prelude::Uint8Array"
},
"wasm": {
"Bytes32": "Vec<u8>",
"Bytes48": "Vec<u8>",
"Bytes96": "Vec<u8>",
"BytesImpl<33>": "Vec<u8>",
"BytesImpl<64>": "Vec<u8>",
"Bytes": "Vec<u8>",
"TreeHash": "Vec<u8>",
"SerializedProgram": "Vec<u8>",
"Vec<Bytes32>": "js_sys::Array",
"Vec<TreeHash>": "js_sys::Array"
},
"pyo3": {
"Bytes32": "Vec<u8>",
"Bytes48": "Vec<u8>",
"Bytes96": "Vec<u8>",
"BytesImpl<33>": "Vec<u8>",
"BytesImpl<64>": "Vec<u8>",
"Bytes": "Vec<u8>",
"TreeHash": "Vec<u8>",
"SerializedProgram": "Vec<u8>"
}
}