An open source repository of all UXLINK contracts maintained by UXLINK Labs. This repo contains the UXLink core contracts. UXLINK Social Growth Layer is an infrastructure Layer which contains chain abstraction, accounts abstraction, universal gas, social protocols, etc.
- Web: dapp.uxlink.io
- Line DApp: lineapp.uxlink.io
- INVITE Mini App: https://t.me/UXINVITE_bot/app
- Twitter: @UXLINKofficial
- Telegram: @uxlink_bot
- Email: admin@uxlink.io
UXLink has an active and ever growing community.
They are the primary communication used for day to day communication, answering questions, and aggregating UXLink related content. Take a look at the community blogs for more information regarding UXLink social accounts, news, and networking.
Folder | Contents |
---|---|
contracts/ |
Shared UXLink core contracts. |
documents/ |
Shared Development documents and UXLINK contract descriptions. |
scripts/ |
UXLINK core contract running script. |
- Install the required packages
npm install
- Open hardhat.config.js file and add the following scripts (we use the https://www.alchemy.com service)
const PRIVATE_KEY = "your-wallet-private-key";
const alchemyNetworkUrl = "https://arb-goerli.alchemyapi.io/v2/your-api-key";
npx hardhat compile
npx hardhat test
npx hardhat test --network arb_goerli
npx hardhat test --network arb_goerli ./test/your_test_script.js
npx hardhat run --network arb_goerli ./scripts/your_test_script.js