Skip to content

conflux-fans/conflux-contracts

Repository files navigation

NPM Package

conflux-contracts

Common useful contracts in Conflux DAPP developments. Code

  • Conflux internal contracts
  • Support Solidity 8.0+, depend on @openzeppelin/contracts 4.0+(not compatible with version5)

Overview

Install

npm install @confluxfans/contracts

How to Use

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@confluxfans/contracts/InternalContracts/AdminControl.sol";

contract YourContract {
  AdminControl adminControl = AdminControl(0x0888000000000000000000000000000000000000);
  
  constructor() public {
  }
}

Contribute

There are many ways you can participate and help build high quality software. Check out the contribution guide!

Compile & Lint

$ npm run lint
$ npm run lint:sol:fix  # run this command if lint failed to fix code style issue
$ npm run compile  # or npx hardhat compile

How to release version

  1. Update version field in project root's package.json and then run npm run version to sync sub folder's (contracts) package.json
  2. cd contracts folder
  3. Run npm publish --access public to publish package.

FAQs

I copy the code from contracts into my project, but it doesn't compile?

Please make sure you have installed the correct version of @openzeppelin/contracts. The contracts package is designed to work with @openzeppelin/contracts 4.0+.

License

Conflux-contracts is released under the MIT License.

About

Common useful contracts in Conflux DAPP developments

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •