Skip to content

Commit fec3b4d

Browse files
phishing 0.18.13
1 parent 8804f2a commit fec3b4d

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
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+
- phishing 0.18.13
56
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 9.11.1
67
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.2.3
78
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.2.2

phishing/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To check for sites that are on the list -
44

55
```js
6-
import { checkIfDenied } from 'https://deno.land/x/polkadot@0.2.20/phishing/mod.ts';
6+
import { checkIfDenied } from 'https://deno.land/x/polkadot/phishing/mod.ts';
77

88
const isOnDeny = await checkIfDenied(window.location.host);
99

@@ -13,7 +13,7 @@ console.log(`isOnDeny=${isOnDeny}`);
1313
To check for addresses that are on the list -
1414

1515
```js
16-
import { checkAddress } from 'https://deno.land/x/polkadot@0.2.20/phishing/mod.ts';
16+
import { checkAddress } from 'https://deno.land/x/polkadot/phishing/mod.ts';
1717

1818
const info = await checkAddress('1b....');
1919

phishing/bundle.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright 2020-2022 @polkadot/phishing authors & contributors
1+
// Copyright 2020-2023 @polkadot/phishing authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

44
import type { AddressList, HostList } from './types.ts';
55

6-
import { u8aEq } from 'https://deno.land/x/polkadot@0.2.20/util/mod.ts';
7-
import { decodeAddress } from 'https://deno.land/x/polkadot@0.2.20/util-crypto/mod.ts';
6+
import { u8aEq } from 'https://deno.land/x/polkadot/util/mod.ts';
7+
import { decodeAddress } from 'https://deno.land/x/polkadot/util-crypto/mod.ts';
88

99
import { fetchJson } from './fetch.ts';
1010

phishing/detectOther.ts

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

44
// Empty template, auto-generated by @polkadot/dev

phishing/detectPackage.ts

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

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

6-
import { detectPackage } from 'https://deno.land/x/polkadot@0.2.20/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';

phishing/fetch.ts

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

4-
import { fetch } from 'https://deno.land/x/polkadot@0.2.20/x-fetch/mod.ts';
4+
import { fetch } from 'https://deno.land/x/polkadot/x-fetch/mod.ts';
55

66
// this is also in @polkadot/apps-config - we may want to expose it
77
// inside x-fetch at some point in the future...

phishing/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2022 @polkadot/phishing authors & contributors
1+
// Copyright 2020-2023 @polkadot/phishing authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

44
import './detectPackage.ts';

phishing/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2022 @polkadot/phishing authors & contributors
1+
// Copyright 2020-2023 @polkadot/phishing authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

44
export * from './index.ts';

phishing/packageInfo.ts

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

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

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

phishing/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2022 @polkadot/phishing authors & contributors
1+
// Copyright 2020-2023 @polkadot/phishing authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

44
export interface HostList {

0 commit comments

Comments
 (0)