Skip to content

Commit f3dab96

Browse files
hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.1.4
1 parent 20f47bc commit f3dab96

File tree

215 files changed

+330
-321
lines changed

Some content is hidden

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

215 files changed

+330
-321
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.1.4
6+
37
## 0.1.0 Aug 7, 2022
48

59
- phishing 0.18.4

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.1.0/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.1.0' };
6+
export const packageInfo = { name: '@polkadot/hw-ledger-transports', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.1.4' };

hw-ledger/bundle.ts

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

4-
import type { ResponseBase, SubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.33.0';
4+
import type { ResponseBase, SubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.34.0';
55
import type { AccountOptions, LedgerAddress, LedgerSignature, LedgerTypes, LedgerVersion } from './types.ts';
66

7-
import { transports } from 'https://deno.land/x/polkadot@0.1.0/hw-ledger-transports/mod.ts';
8-
import { u8aToBuffer } from 'https://deno.land/x/polkadot@0.1.0/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/defaults.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
import type Transport from 'https://esm.sh/@ledgerhq/[email protected]';
5-
import type { SubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.33.0';
5+
import type { SubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.34.0';
66

7-
import { newAcalaApp, newAlephZeroApp, newAstarApp, newBifrostApp, newCentrifugeApp, newComposableApp, newDockApp, newEdgewareApp, newEquilibriumApp, newGenshiroApp, newInterlayApp, newKaruraApp, newKusamaApp, newNodleApp, newParallelApp, newPolkadexApp, newPolkadotApp, newPolymeshApp, newSoraApp, newStafiApp, newStatemineApp, newStatemintApp, newUniqueApp, newXXNetworkApp } from 'https://esm.sh/@zondax/ledger-substrate@0.33.0';
7+
import { newAcalaApp, newAlephZeroApp, newAstarApp, newBifrostApp, newBifrostKusamaApp, newCentrifugeApp, newComposableApp, newDockApp, newEdgewareApp, newEquilibriumApp, newGenshiroApp, newInterlayApp, newKaruraApp, newKusamaApp, newNodleApp, newParallelApp, newPolkadexApp, newPolkadotApp, newPolymeshApp, newSoraApp, newStafiApp, newStatemineApp, newStatemintApp, newUniqueApp, newXXNetworkApp } from 'https://esm.sh/@zondax/ledger-substrate@0.34.0';
88

99
// These match up with the keys of the knownLedger object in the @polkadot/networks/defaults/ledger.ts
1010
export const ledgerApps: Record<string, (transport: Transport) => SubstrateApp> = {
1111
acala: newAcalaApp,
1212
'aleph-node': newAlephZeroApp,
1313
astar: newAstarApp,
1414
bifrost: newBifrostApp,
15+
'bifrost-kusama': newBifrostKusamaApp,
1516
centrifuge: newCentrifugeApp,
1617
composable: newComposableApp,
1718
'dock-mainnet': newDockApp,

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.1.0/hw-ledger-transports/packageInfo.ts';
5-
import { packageInfo as utilInfo } from 'https://deno.land/x/polkadot@0.1.0/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.1.0/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.1.0' };
6+
export const packageInfo = { name: '@polkadot/hw-ledger', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.1.4' };

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.1.0/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.1.0/keyring/mod.ts';
16+
import Keyring from 'https://deno.land/x/polkadot/keyring/mod.ts';
1717
```

0 commit comments

Comments
 (0)