Skip to content

Commit 3abd454

Browse files
hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 12.2.1
1 parent 9af8db7 commit 3abd454

File tree

216 files changed

+476
-435
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

+476
-435
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions

hw-ledger-transports/browser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
import LedgerHid from 'https://esm.sh/@ledgerhq/hw-transport-webhid@6.27.13';
3-
import LedgerUsb from 'https://esm.sh/@ledgerhq/hw-transport-webusb@6.27.13';
2+
import LedgerHid from 'https://esm.sh/@ledgerhq/hw-transport-webhid@6.27.14';
3+
import LedgerUsb from 'https://esm.sh/@ledgerhq/hw-transport-webusb@6.27.14';
44

55
import { createDefs } from './util.ts';
66

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.38/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-transports/node.ts

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

2-
import LedgerHid from 'https://esm.sh/@ledgerhq/hw-transport-node-hid-singleton@6.28.10';
2+
import LedgerHid from 'https://esm.sh/@ledgerhq/hw-transport-node-hid-singleton@6.28.11';
33

44
import { createDefs } from './util.ts';
55

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

hw-ledger-transports/types.ts

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

2-
import type * as HwTransport from 'https://esm.sh/@ledgerhq/hw-transport@6.28.2';
2+
import type * as HwTransport from 'https://esm.sh/@ledgerhq/hw-transport@6.28.3';
33

44
export type TransportType = 'hid' | 'webusb';
55

hw-ledger/bundle.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
import type { SubstrateApp } from 'https://esm.sh/@zondax/ledger-substrate@0.40.7';
3-
import type { TransportDef, TransportType } from 'https://deno.land/x/polkadot@0.2.38/hw-ledger-transports/types.ts';
3+
import type { TransportDef, TransportType } from 'https://deno.land/x/polkadot/hw-ledger-transports/types.ts';
44
import type { AccountOptions, LedgerAddress, LedgerSignature, LedgerVersion } from './types.ts';
55

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

8-
import { transports } from 'https://deno.land/x/polkadot@0.2.38/hw-ledger-transports/mod.ts';
9-
import { hexAddPrefix, u8aToBuffer } from 'https://deno.land/x/polkadot@0.2.38/util/mod.ts';
8+
import { transports } from 'https://deno.land/x/polkadot/hw-ledger-transports/mod.ts';
9+
import { hexAddPrefix, u8aToBuffer } from 'https://deno.land/x/polkadot/util/mod.ts';
1010

1111
import { LEDGER_DEFAULT_ACCOUNT, LEDGER_DEFAULT_CHANGE, LEDGER_DEFAULT_INDEX, LEDGER_SUCCESS_CODE } from './constants.ts';
1212
import { ledgerApps } from './defaults.ts';
@@ -87,7 +87,7 @@ export class Ledger {
8787
}
8888

8989
/**
90-
* Signs a transcation on the Ledger device
90+
* Signs a transaction on the Ledger device
9191
*/
9292
public async sign (message: Uint8Array, accountOffset = 0, addressOffset = 0, { account = LEDGER_DEFAULT_ACCOUNT, addressIndex = LEDGER_DEFAULT_INDEX, change = LEDGER_DEFAULT_CHANGE }: Partial<AccountOptions> = {}): Promise<LedgerSignature> {
9393
return this.withApp(async (app: SubstrateApp): Promise<LedgerSignature> => {

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

0 commit comments

Comments
 (0)