Skip to content

Commit a9b2701

Browse files
hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 11.1.1
1 parent 6bcf186 commit a9b2701

File tree

218 files changed

+373
-417
lines changed

Some content is hidden

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

218 files changed

+373
-417
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## master
44

5+
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 11.1.1
56
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 10.1.3
67

78
## 0.2.31 Mar 12, 2023

hw-ledger-transports/detectPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
import { detectPackage } from 'https://deno.land/x/polkadot@0.2.31/util/mod.ts';
3+
import { detectPackage } from 'https://deno.land/x/polkadot/util/mod.ts';
44

55
import others from './detectOther.ts';
66
import { packageInfo } from './packageInfo.ts';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

22

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

hw-ledger/bundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import type { AccountOptions, LedgerAddress, LedgerSignature, LedgerTypes, Ledge
44

55
import { newSubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.40.5';
66

7-
import { transports } from 'https://deno.land/x/polkadot@0.2.31/hw-ledger-transports/mod.ts';
8-
import { hexAddPrefix, u8aToBuffer } from 'https://deno.land/x/polkadot@0.2.31/util/mod.ts';
7+
import { transports } from 'https://deno.land/x/polkadot/hw-ledger-transports/mod.ts';
8+
import { hexAddPrefix, 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,5 +1,5 @@
11

2-
import { packageInfo as transportInfo } from 'https://deno.land/x/polkadot@0.2.31/hw-ledger-transports/packageInfo.ts';
3-
import { packageInfo as utilInfo } from 'https://deno.land/x/polkadot@0.2.31/util/packageInfo.ts';
2+
import { packageInfo as transportInfo } from 'https://deno.land/x/polkadot/hw-ledger-transports/packageInfo.ts';
3+
import { packageInfo as utilInfo } from 'https://deno.land/x/polkadot/util/packageInfo.ts';
44

55
export default [transportInfo, utilInfo];

hw-ledger/detectPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
import { detectPackage } from 'https://deno.land/x/polkadot@0.2.31/util/mod.ts';
3+
import { detectPackage } from 'https://deno.land/x/polkadot/util/mod.ts';
44

55
import others from './detectOther.ts';
66
import { packageInfo } from './packageInfo.ts';

hw-ledger/packageInfo.ts

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

22

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

hw-ledger/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
import type { HexString } from 'https://deno.land/x/polkadot@0.2.31/util/types.ts';
2+
import type { HexString } from 'https://deno.land/x/polkadot/util/types.ts';
33

44
export type LedgerTypes = 'hid' | 'u2f' | 'webusb';
55

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.2.31/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
@@ -1,7 +1,7 @@
11

22
import { Keyring } from './keyring.ts';
33

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

66
export * from './defaults.ts';
77

0 commit comments

Comments
 (0)