@dashevo/wasm-dpp2 3.0.0-rc.3 → 3.0.0
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/dist/dpp.compressed.js +1 -1
- package/dist/dpp.d.ts +3 -3
- package/dist/dpp.js +1 -1
- package/dist/raw/wasm_dpp2.d.ts +3 -3
- package/dist/raw/wasm_dpp2.js +2 -2
- package/dist/raw/wasm_dpp2.no_url.js +2 -2
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/package.json +1 -1
package/dist/dpp.d.ts
CHANGED
|
@@ -171,7 +171,7 @@ export type NetworkLike = Network | "mainnet" | "testnet" | "devnet" | "regtest"
|
|
|
171
171
|
* A Platform address can be provided as:
|
|
172
172
|
* - A PlatformAddress object
|
|
173
173
|
* - A Uint8Array (21 bytes: type byte + 20-byte hash)
|
|
174
|
-
* - A bech32m string (e.g., "
|
|
174
|
+
* - A bech32m string (e.g., "evo1..." or "tevo1...")
|
|
175
175
|
*/
|
|
176
176
|
export type PlatformAddressLike = PlatformAddress | Uint8Array | string;
|
|
177
177
|
|
|
@@ -1315,7 +1315,7 @@ export class PlatformAddress {
|
|
|
1315
1315
|
/**
|
|
1316
1316
|
* Creates a PlatformAddress from a bech32m-encoded string.
|
|
1317
1317
|
*
|
|
1318
|
-
* Accepts addresses with either mainnet ("
|
|
1318
|
+
* Accepts addresses with either mainnet ("evo") or testnet ("tevo") HRP.
|
|
1319
1319
|
*/
|
|
1320
1320
|
static fromBech32m(address: string): PlatformAddress;
|
|
1321
1321
|
/**
|
|
@@ -1330,7 +1330,7 @@ export class PlatformAddress {
|
|
|
1330
1330
|
* Creates a new PlatformAddress from various input types.
|
|
1331
1331
|
*
|
|
1332
1332
|
* Accepts:
|
|
1333
|
-
* - A bech32m string (e.g., "
|
|
1333
|
+
* - A bech32m string (e.g., "evo1..." or "tevo1...")
|
|
1334
1334
|
* - A Uint8Array (21 bytes: type byte + 20-byte hash)
|
|
1335
1335
|
* - An existing PlatformAddress object
|
|
1336
1336
|
*/
|