Skip to content

Commit b424bd6

Browse files
hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.0.2
1 parent e911134 commit b424bd6

File tree

216 files changed

+344
-329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+344
-329
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## master
4+
5+
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.0.2
6+
37
## 0.0.5 Jul 9, 2022
48

59
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 8.12.1

hw-ledger-transports/detectPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
import { detectPackage } from 'https://deno.land/x/polkadot@0.0.5/util/mod.ts';
6+
import { detectPackage } from 'https://deno.land/x/polkadot/util/mod.ts';
77

88
import others from './detectOther.ts';
99
import { packageInfo } from './packageInfo.ts';

hw-ledger-transports/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@polkadot/hw-ledger-transports', path: new URL(import.meta.url).pathname, type: 'deno', version: '0.0.5' };
6+
export const packageInfo = { name: '@polkadot/hw-ledger-transports', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.0.2' };

hw-ledger/bundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import type { ResponseBase, SubstrateApp } from 'https://esm.sh/@zondax/[email protected]';
55
import type { AccountOptions, LedgerAddress, LedgerSignature, LedgerTypes, LedgerVersion } from './types.ts';
66

7-
import { transports } from 'https://deno.land/x/polkadot@0.0.5/hw-ledger-transports/mod.ts';
8-
import { u8aToBuffer } from 'https://deno.land/x/polkadot@0.0.5/util/mod.ts';
7+
import { transports } from 'https://deno.land/x/polkadot/hw-ledger-transports/mod.ts';
8+
import { u8aToBuffer } from 'https://deno.land/x/polkadot/util/mod.ts';
99

1010
import { LEDGER_DEFAULT_ACCOUNT, LEDGER_DEFAULT_CHANGE, LEDGER_DEFAULT_INDEX, LEDGER_SUCCESS_CODE } from './constants.ts';
1111
import { ledgerApps } from './defaults.ts';

hw-ledger/detectOther.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2017-2022 @polkadot/hw-ledger authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

4-
import { packageInfo as transportInfo } from 'https://deno.land/x/polkadot@0.0.5/hw-ledger-transports/packageInfo.ts';
5-
import { packageInfo as utilInfo } from 'https://deno.land/x/polkadot@0.0.5/util/packageInfo.ts';
4+
import { packageInfo as transportInfo } from 'https://deno.land/x/polkadot/hw-ledger-transports/packageInfo.ts';
5+
import { packageInfo as utilInfo } from 'https://deno.land/x/polkadot/util/packageInfo.ts';
66

77
export default [transportInfo, utilInfo];

hw-ledger/detectPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
import { detectPackage } from 'https://deno.land/x/polkadot@0.0.5/util/mod.ts';
6+
import { detectPackage } from 'https://deno.land/x/polkadot/util/mod.ts';
77

88
import others from './detectOther.ts';
99
import { packageInfo } from './packageInfo.ts';

hw-ledger/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@polkadot/hw-ledger', path: new URL(import.meta.url).pathname, type: 'deno', version: '0.0.5' };
6+
export const packageInfo = { name: '@polkadot/hw-ledger', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.0.2' };

hw-ledger/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2017-2022 @polkadot/hw-ledger authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

4-
import type { HexString } from 'https://deno.land/x/polkadot@0.0.5/util/types.ts';
4+
import type { HexString } from 'https://deno.land/x/polkadot/util/types.ts';
55

66
export type LedgerTypes = 'hid' | 'u2f' | 'webusb';
77

keyring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ yarn add @polkadot/keyring
1313
Classes and Functions can be imported as follows:
1414

1515
```js
16-
import Keyring from 'https://deno.land/x/polkadot@0.0.5/keyring/mod.ts';
16+
import Keyring from 'https://deno.land/x/polkadot/keyring/mod.ts';
1717
```

keyring/bundle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import { Keyring } from './keyring.ts';
55

6-
export { decodeAddress, encodeAddress, setSS58Format } from 'https://deno.land/x/polkadot@0.0.5/util-crypto/mod.ts';
6+
export { decodeAddress, encodeAddress, setSS58Format } from 'https://deno.land/x/polkadot/util-crypto/mod.ts';
77

88
export * from './defaults.ts';
99
export { createPair } from './pair/index.ts';

0 commit comments

Comments
 (0)