react-web3-storage 1.0.41 → 1.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/config.js +6 -7
  2. package/package.json +1 -1
package/config.js CHANGED
@@ -8,6 +8,12 @@ const blockChainsData = [
8
8
  token: '0x5FbDB2315678afecb367f032d93F642f64180aa3',
9
9
  receiver: '0xcbEAF3BDe82155F56486Fb5a1072cb8baAf547cc',
10
10
  publicRpc: 'http://192.168.50.246:8545'
11
+ },
12
+ {
13
+ network: bsc,
14
+ name: 'bnb',
15
+ token: '0xD566886eB93500e2BA464bd48c8D5A2556569253',
16
+ receiver: '0x9449448eae234EDC73958A35A205F9648D7Bd208'
11
17
  }
12
18
  ]
13
19
  .filter(({ name }) => name === 'unknown' ? process.env.NODE_ENV === 'development' : true)
@@ -16,13 +22,6 @@ const blockChainsData = [
16
22
  const config = {
17
23
  networks: blockChainsData.map(({ network }) => network),
18
24
  blockChainsData,
19
- metadata: {
20
- name: 'React Web3 Storage',
21
- description: 'Example DApp with React Web3 Storage',
22
- url: 'https://prohetamine.github.io/react-web3-storage/',
23
- icons: ['https://prohetamine.github.io/react-web3-storage/icon.svg']
24
- },
25
- projectId: '1febfd92481d4ea997711d2ac4a363c0',
26
25
  address: blockChainsData.reduce((ctx, { name, token, receiver }) => {
27
26
  ctx[name] = {
28
27
  token,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-web3-storage",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "description": "Simple web3 storage for react dapp",
5
5
  "main": "src/index.js",
6
6
  "author": "Stas Prohetamine",