opnet 1.0.12 → 1.0.13
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.
- package/browser/crypto/crypto-browser.d.ts +33 -33
- package/browser/crypto/crypto.d.ts +2 -2
- package/browser/index.js +2 -2
- package/browser/opnet.d.ts +3 -0
- package/build/opnet.d.ts +3 -0
- package/build/opnet.js +3 -0
- package/docs/assets/highlight.css +64 -57
- package/docs/assets/icons.js +14 -14
- package/docs/assets/main.js +59 -59
- package/docs/assets/material-style.css +247 -247
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +1412 -1412
- package/docs/classes/AbstractRpcProvider.html +276 -196
- package/docs/classes/BitcoinAddress.html +190 -0
- package/docs/classes/Block.html +194 -195
- package/docs/classes/CallResult.html +178 -0
- package/docs/classes/ContractData.html +185 -0
- package/docs/classes/DeploymentTransaction.html +190 -190
- package/docs/classes/GenericTransaction.html +182 -182
- package/docs/classes/InteractionTransaction.html +190 -190
- package/docs/classes/JSONRpcProvider.html +268 -195
- package/docs/classes/StoredValue.html +180 -0
- package/docs/classes/TransactionBase.html +182 -182
- package/docs/classes/TransactionInput.html +179 -179
- package/docs/classes/TransactionOutput.html +179 -179
- package/docs/classes/TransactionParser.html +177 -0
- package/docs/classes/TransactionReceipt.html +179 -0
- package/docs/classes/UTXO.html +179 -0
- package/docs/classes/WebSocketRpcProvider.html +268 -195
- package/docs/enums/OPNetTransactionTypes.html +176 -176
- package/docs/hierarchy.html +173 -173
- package/docs/index.html +212 -212
- package/docs/interfaces/IAccessList.html +174 -0
- package/docs/interfaces/IAccessListItem.html +174 -0
- package/docs/interfaces/IBlock.html +193 -193
- package/docs/interfaces/IBlockCommon.html +192 -192
- package/docs/interfaces/ICallRequestError.html +175 -0
- package/docs/interfaces/ICallResultData.html +177 -0
- package/docs/interfaces/IDeploymentTransaction.html +189 -189
- package/docs/interfaces/IGenericTransaction.html +181 -181
- package/docs/interfaces/IInteractionTransaction.html +189 -189
- package/docs/interfaces/IRawContract.html +184 -0
- package/docs/interfaces/IStorageValue.html +178 -0
- package/docs/interfaces/ITransactionBase.html +181 -181
- package/docs/interfaces/ITransactionInput.html +178 -178
- package/docs/interfaces/ITransactionOutput.html +176 -176
- package/docs/interfaces/ITransactionReceipt.html +178 -0
- package/docs/interfaces/IUTXO.html +178 -0
- package/docs/modules.html +214 -195
- package/docs/types/BitcoinAddressLike.html +174 -0
- package/docs/types/BlockHeaderChecksumProof.html +173 -173
- package/docs/types/ICallResult.html +174 -0
- package/docs/types/ITransaction.html +173 -173
- package/docs/types/PointerLike.html +174 -0
- package/docs/types/UTXOs.html +174 -0
- package/docs/variables/version.html +173 -173
- package/package.json +2 -1
- package/src/opnet.ts +47 -44
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export function createHash(algo: any): import("@noble/hashes/utils").Hash<{
|
|
2
|
-
A: number;
|
|
3
|
-
B: number;
|
|
4
|
-
C: number;
|
|
5
|
-
D: number;
|
|
6
|
-
E: number;
|
|
7
|
-
F: number;
|
|
8
|
-
G: number;
|
|
9
|
-
H: number;
|
|
10
|
-
get(): [number, number, number, number, number, number, number, number];
|
|
11
|
-
set(A: number, B: number, C: number, D: number, E: number, F: number, G: number, H: number): void;
|
|
12
|
-
process(view: DataView, offset: number): void;
|
|
13
|
-
roundClean(): void;
|
|
14
|
-
destroy(): void;
|
|
15
|
-
readonly blockLen: number;
|
|
16
|
-
outputLen: number;
|
|
17
|
-
readonly padOffset: number;
|
|
18
|
-
readonly isLE: boolean;
|
|
19
|
-
buffer: Uint8Array;
|
|
20
|
-
view: DataView;
|
|
21
|
-
finished: boolean;
|
|
22
|
-
length: number;
|
|
23
|
-
pos: number;
|
|
24
|
-
destroyed: boolean;
|
|
25
|
-
update(data: import("@noble/hashes/utils").Input): any;
|
|
26
|
-
digestInto(out: Uint8Array): void;
|
|
27
|
-
digest(): Uint8Array;
|
|
28
|
-
_cloneInto(to?: any | undefined): any;
|
|
29
|
-
clone(): any;
|
|
30
|
-
}> | import("@noble/hashes/utils").Hash<import("@noble/hashes/sha512").SHA512>;
|
|
31
|
-
export function createHmac(_algo: any, key: any): import("@noble/hashes/hmac").HMAC<any>;
|
|
32
|
-
export function pbkdf2Sync(password: any, salt: any, iterations: any, keylen: any, _algo: any): Uint8Array;
|
|
33
|
-
export function randomBytes(length: any): Uint8Array;
|
|
1
|
+
export function createHash(algo: any): import("@noble/hashes/utils").Hash<{
|
|
2
|
+
A: number;
|
|
3
|
+
B: number;
|
|
4
|
+
C: number;
|
|
5
|
+
D: number;
|
|
6
|
+
E: number;
|
|
7
|
+
F: number;
|
|
8
|
+
G: number;
|
|
9
|
+
H: number;
|
|
10
|
+
get(): [number, number, number, number, number, number, number, number];
|
|
11
|
+
set(A: number, B: number, C: number, D: number, E: number, F: number, G: number, H: number): void;
|
|
12
|
+
process(view: DataView, offset: number): void;
|
|
13
|
+
roundClean(): void;
|
|
14
|
+
destroy(): void;
|
|
15
|
+
readonly blockLen: number;
|
|
16
|
+
outputLen: number;
|
|
17
|
+
readonly padOffset: number;
|
|
18
|
+
readonly isLE: boolean;
|
|
19
|
+
buffer: Uint8Array;
|
|
20
|
+
view: DataView;
|
|
21
|
+
finished: boolean;
|
|
22
|
+
length: number;
|
|
23
|
+
pos: number;
|
|
24
|
+
destroyed: boolean;
|
|
25
|
+
update(data: import("@noble/hashes/utils").Input): any;
|
|
26
|
+
digestInto(out: Uint8Array): void;
|
|
27
|
+
digest(): Uint8Array;
|
|
28
|
+
_cloneInto(to?: any | undefined): any;
|
|
29
|
+
clone(): any;
|
|
30
|
+
}> | import("@noble/hashes/utils").Hash<import("@noble/hashes/sha512").SHA512>;
|
|
31
|
+
export function createHmac(_algo: any, key: any): import("@noble/hashes/hmac").HMAC<any>;
|
|
32
|
+
export function pbkdf2Sync(password: any, salt: any, iterations: any, keylen: any, _algo: any): Uint8Array;
|
|
33
|
+
export function randomBytes(length: any): Uint8Array;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
export { createHash, createHmac, pbkdf2Sync, randomBytes } from 'crypto';
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
export { createHash, createHmac, pbkdf2Sync, randomBytes } from 'crypto';
|