dash-platform-sdk 1.3.2 → 1.3.3
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/README.md +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# dash-platform-sdk v1.3.
|
|
1
|
+
# dash-platform-sdk v1.3.3
|
|
2
2
|
[](https://github.com/pshenmic/dash-platform-sdk/blob/master/LICENSE)  
|
|
3
3
|
|
|
4
4
|
|
|
@@ -81,7 +81,7 @@ Or load it straight from the web page:
|
|
|
81
81
|
|
|
82
82
|
Now you're ready to make queries in the network and push your data!
|
|
83
83
|
|
|
84
|
-
See [docs/Quickstart.md](docs/Quickstart.md) for basic usage examples (register data contract, push/update/delete documents).
|
|
84
|
+
See [docs/Quickstart.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/Quickstart.md) for basic usage examples (register data contract, push/update/delete documents).
|
|
85
85
|
|
|
86
86
|
## API Documentation
|
|
87
87
|
|
|
@@ -104,17 +104,17 @@ The folder `docs/examples` in this repo contains useful example code snippets.
|
|
|
104
104
|
|
|
105
105
|
| | |
|
|
106
106
|
|---|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
107
|
-
| [Quickstart.md](docs/Quickstart.md) | Install, Import, Register Data Contract, Push / Update / Delete Document |
|
|
108
|
-
| [DataContracts.md](docs/examples/DataContracts.md) | Get Data Contract By Identifier, Create Data Contract, Create State Transition |
|
|
109
|
-
| [Documents.md](docs/examples/Documents.md) | Create Document, Query Documents, Create State Transition (Create / Replace/ Delete / Transfer / Purchase / UpdatePrice) |
|
|
110
|
-
| [Tokens.md](docs/examples/Tokens.md) | Get Balance, Get Contract Info, Get Supply, Get prices, Create State Transition |
|
|
111
|
-
| [Identities.md](docs/examples/Identities.md) | Get Identity, Get Identity Balance, Get Identity Nonce, Get Identity Public Keys, Create Identity (from AssetLockProof), Top Up Identity (from AssetLockProof), Update Identity, Credit Transfer, Credit Withdrawal |
|
|
112
|
-
| [Voting.md](docs/examples/Voting.md) | Casting Masternode Vote against Contested Resource |
|
|
113
|
-
| [StateTransitions.md](docs/examples/StateTransitions.md) | Broadcast Transaction, Wait for State Transition Result (wait for finalization) |
|
|
114
|
-
| [Names.md](docs/examples/Names.md) | Search By Dash Username (DPNS Name), Search by Identity's Identifier, Register Dash Username (DPNS Name), Test Name Contested (validation), Validate Name (validation) |
|
|
115
|
-
| [Node.md](docs/examples/Node.md) | Node Status, Total Credits (locked in Platform), Epochs Info |
|
|
116
|
-
| [Utils.md](docs/examples/Utils.md) | useful utility functions, like hex/base58 encoding, createVoterIdentifier, createMasternodeIdentifier, validateIdentifier |
|
|
117
|
-
| [KeyPair.md](docs/examples/KeyPair.md) | Mnemonic to Seed, Seed to HD Key, Derive Identity Private Key, Derive Child, Derive Path, P2PKH Address conversion |
|
|
118
|
-
| [ContestedResources.md](docs/examples/ContestedResources.md) | Contested Resource Vote State Info |
|
|
107
|
+
| [Quickstart.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/Quickstart.md) | Install, Import, Register Data Contract, Push / Update / Delete Document |
|
|
108
|
+
| [DataContracts.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/DataContracts.md) | Get Data Contract By Identifier, Create Data Contract, Create State Transition |
|
|
109
|
+
| [Documents.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Documents.md) | Create Document, Query Documents, Create State Transition (Create / Replace/ Delete / Transfer / Purchase / UpdatePrice) |
|
|
110
|
+
| [Tokens.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Tokens.md) | Get Balance, Get Contract Info, Get Supply, Get prices, Create State Transition |
|
|
111
|
+
| [Identities.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Identities.md) | Get Identity, Get Identity Balance, Get Identity Nonce, Get Identity Public Keys, Create Identity (from AssetLockProof), Top Up Identity (from AssetLockProof), Update Identity, Credit Transfer, Credit Withdrawal |
|
|
112
|
+
| [Voting.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Voting.md) | Casting Masternode Vote against Contested Resource |
|
|
113
|
+
| [StateTransitions.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/StateTransitions.md) | Broadcast Transaction, Wait for State Transition Result (wait for finalization) |
|
|
114
|
+
| [Names.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Names.md) | Search By Dash Username (DPNS Name), Search by Identity's Identifier, Register Dash Username (DPNS Name), Test Name Contested (validation), Validate Name (validation) |
|
|
115
|
+
| [Node.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Node.md) | Node Status, Total Credits (locked in Platform), Epochs Info |
|
|
116
|
+
| [Utils.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/Utils.md) | useful utility functions, like hex/base58 encoding, createVoterIdentifier, createMasternodeIdentifier, validateIdentifier |
|
|
117
|
+
| [KeyPair.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/KeyPair.md) | Mnemonic to Seed, Seed to HD Key, Derive Identity Private Key, Derive Child, Derive Path, P2PKH Address conversion |
|
|
118
|
+
| [ContestedResources.md](https://github.com/pshenmic/dash-platform-sdk/blob/v1.3.3/docs/examples/ContestedResources.md) | Contested Resource Vote State Info |
|
|
119
119
|
|
|
120
120
|
|