- Jun 15, 2020
-
-
dependabot-preview[bot] authored
-
- Jun 08, 2020
-
-
Zeke Mostov authored
-
Zeke Mostov authored
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
- Jun 06, 2020
-
-
Zeke Mostov authored
-
Amaury Martiny authored
* Make it work * Update README * Make it work * Add example * Better comment * Better signWith * Add docs * Update README * yarn docs * Nits
-
Zeke Mostov authored
* v3.1.3 Change to patch * Update package.json Co-authored-by: Amaury Martiny <[email protected]> Co-authored-by: Amaury Martiny <[email protected]>
-
- Jun 01, 2020
-
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
- May 28, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
* fix(deps): Update to @polkadot/[email protected] * Update again
-
- May 26, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
* fix(deps): Update to @polkadot/[email protected] * Update again
-
Amaury Martiny authored
-
Amaury Martiny authored
* feat: Add attest and claimAttest * Update polkadot * Docs * Remove skipped tests * Fix test due to polkadot/api * docs changes * yarn doc * Add utilities for claiming and attesting * Docs * add claim example * Update SAFT hash * Typo * Fix tests * add encodeunsigned (#155) * export encodeUnsignedTransaction * docs * Update src/util/encodeUnsignedTx.ts Co-authored-by: Amaury Martiny <[email protected]> * Update api Co-authored-by: joepetrowski <[email protected]> Co-authored-by: joe petrowski <[email protected]>
-
- May 25, 2020
-
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
- May 22, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
* feat: Add system.remark * yarn docs
-
- May 21, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
* fix(deps): Bump @polkadot/api to v1.15.0-beta.8 * withdrawUnbonded takes args * docs
-
- May 20, 2020
-
-
Amaury Martiny authored
* docs: Make getRegistry docs clearer * Docs Co-authored-by: joe petrowski <[email protected]>
-
emostov authored
* Update examples/README.md to add fix pluralization in bash commands * Replace kusama.ts example with polkadot.ts bc kusama example does not exist
-
- May 18, 2020
-
-
Amaury Martiny authored
-
dependabot-preview[bot] authored
-
Amaury Martiny authored
BREAKING CHANGE: `BaseTxInfo` now takes an additional `transactionVersion` field.
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
- May 16, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
BREAKING CHANGE: This refactor breaks compatibility with v1, as all functions now require a `{ metadataRpc?, registry }` last argument. #### Rationale In v1, by not passing any last argument, we implicitly used Kusama's most recent TypeRegistry. This was a handy shortcut, but might create hard-to-debug issues down the road (e.g. using another chain, or using Kusama with an incompatible spec version). In v2, we never default to Kusama anymore, and always require the user passing the registry (and sometimes the metadata too, if needed, see docs for details). Example 1: ```diff + // Get Kusama's registry at `specVersion` + const registry = getRegistry('Kusama', 'kusama', specVersion); const unsigned = methods.balances.transfer( { dest: '1F...', value: 23 }, { // other info about tx - metadataRpc: metadataRpc, - } + }, { + metadataRpc: metadataRpc, + registry: registry + } ); ``` Example 2: ```diff const unsigned = {...}; const signature = '...'; + // Get Kusama's registry at `specVersion` + const registry = getRegistry('Kusama', 'kusama', unsigned.specVersion); - const signed = createSigned(unsigned, signature); + const signed = createSigned(unsigned, signature, { + metadataRpc: unsigned.metadata, + registry, + }); ``` Here is the full list of breaking changes: - `decode` function taking 3 arguments was deprecated in v1, in favor or 2 arguments. In v2, `decode` takes exactly 2 arguments. - `createSigningPayload`, `createSignedTx`, `methods.*.*` functions all take a mandatory last argument `{ metadataRpc?, registry }`. Note that the `metadata` field has been renamed to `metadataRpc`. Whether a function needs `metadataRpc` is documented for each function. - `deriveAddress`'s 2nd argument `ss58Format` is now mandatory, and does not default to Kusama's prefix anymore.
-
- May 11, 2020
-
-
Amaury Martiny authored
-
Amaury Martiny authored
-
Amaury Martiny authored
* fix: Allow balance transfer value as string * Add eraPeriod * Add backwards compatibility * Change comments * Change default to 64 * Generate docs
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
- May 04, 2020
-
-
joe petrowski authored
-
Amaury Martiny authored
-