移除一些无效的引用

This commit is contained in:
zhl 2022-01-14 15:57:34 +08:00
parent e9a4dbae6f
commit ce41cca801
14 changed files with 10446 additions and 10449 deletions

File diff suppressed because one or more lines are too long

View File

@ -23927,7 +23927,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.768Z", "updatedAt": "2022-01-13T11:14:28.166Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -18085,7 +18085,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.807Z", "updatedAt": "2022-01-13T11:14:28.197Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -23927,7 +23927,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.751Z", "updatedAt": "2022-01-13T11:14:28.154Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -23933,7 +23933,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.735Z", "updatedAt": "2022-01-13T11:14:28.141Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -9596,7 +9596,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.827Z", "updatedAt": "2022-01-13T11:14:28.216Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2328,7 +2328,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.832Z", "updatedAt": "2022-01-13T11:14:28.219Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -8958,7 +8958,7 @@
} }
}, },
"schemaVersion": "3.4.4", "schemaVersion": "3.4.4",
"updatedAt": "2022-01-13T08:43:45.782Z", "updatedAt": "2022-01-13T11:14:28.175Z",
"networkType": "ethereum", "networkType": "ethereum",
"devdoc": { "devdoc": {
"kind": "dev", "kind": "dev",

View File

@ -1,6 +1,5 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./BEBase.sol"; import "./BEBase.sol";
contract BEChip is BEBase{ contract BEChip is BEBase{

View File

@ -1,6 +1,5 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./BEBase.sol"; import "./BEBase.sol";
contract BEEquipment is BEBase{ contract BEEquipment is BEBase{

View File

@ -1,6 +1,5 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./BEBase.sol"; import "./BEBase.sol";
contract BEHero is BEBase{ contract BEHero is BEBase{

View File

@ -117,7 +117,7 @@ module.exports = async function (deployer, network, accounts) {
} catch (err) { } catch (err) {
console.log(err); console.log(err);
} }
if (network == "local" || network == "development") { if (network == "lan22" || network == "development") {
let jsons = [] let jsons = []
jsons.push({name: 'coin', json: 'assets/contracts/BECoin.json', address: coinInstance.address}) jsons.push({name: 'coin', json: 'assets/contracts/BECoin.json', address: coinInstance.address})
jsons.push({name: 'hero', json: 'assets/contracts/BEHero.json', address: heroInstance.address}) jsons.push({name: 'hero', json: 'assets/contracts/BEHero.json', address: heroInstance.address})