Skip to content

Commit

Permalink
Revise the chain from mainnet to base
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillweston committed Mar 27, 2024
1 parent 7a74b61 commit 251d663
Show file tree
Hide file tree
Showing 7 changed files with 363 additions and 10 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,40 @@ Click [here](https://docs.walletconnect.com/web3modal/javascript/about) to learn

Click [here](https://infura.io/docs) to learn more about Infura API.

# Network for Our Blockchain

We are using the Base Mainnet network for our blockchain.

Click [here](https://docs.base.org/network-information/) to learn more about the Base Mainnet network.

## Mainnet Information

|Name|Value|
|-|-|
|Network Name|Base Mainnet|
|Description|The public mainnet for Base.|
|RPC Endpoint|https://mainnet.base.org|
|Chain ID|8453|
|Currency Symbol|ETH|
|Block Explorer|https://basescan.org|

Refer to the [Base Mainnet](https://github.com/wevm/viem/blob/main/src/chains/definitions/base.ts) for the definition of the Base Mainnet network in viem.

## Goerli Testnet Information

|Name|Value|
|-|-|
|Network Name|Base Goerli Testnet|
|Description|The public testnet for Base.|
|RPC Endpoint|https://goerli.base.org|
|Chain ID|84531|
|Currency Symbol|ETH|
|Block Explorer|https://goerli.basescan.org|

## Supported Blockchain

Click [here](https://github.com/WalletConnect/blockchain-api/blob/master/SUPPORTED_CHAINS.md) to view the supported blockchain for WalletConnect.

## Size of Images

about1.png - 255x420
Expand Down
3 changes: 2 additions & 1 deletion contract-config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"activeNetwork": "mainnet",
"_comment": "Input base or baseGoerli for mainnet or goerli testnet respectively",
"activeNetwork": "base",
"contractAddress": "YOUR_CONTRACT_ADDRESS"
}
4 changes: 2 additions & 2 deletions dist/claim-airdrop.bundle.js

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions dist/node_modules_isows__esm_native_js.bundle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
"use strict";
/*
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
(self["webpackChunk"] = self["webpackChunk"] || []).push([["node_modules_isows__esm_native_js"],{

/***/ "./node_modules/isows/_esm/native.js":
/*!*******************************************!*\
!*** ./node_modules/isows/_esm/native.js ***!
\*******************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ WebSocket: () => (/* binding */ WebSocket)\n/* harmony export */ });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils.js */ \"./node_modules/isows/_esm/utils.js\");\n\nconst WebSocket = (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.getNativeWebSocket)();\n//# sourceMappingURL=native.js.map\n\n//# sourceURL=webpack:///./node_modules/isows/_esm/native.js?");

/***/ }),

/***/ "./node_modules/isows/_esm/utils.js":
/*!******************************************!*\
!*** ./node_modules/isows/_esm/utils.js ***!
\******************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ getNativeWebSocket: () => (/* binding */ getNativeWebSocket)\n/* harmony export */ });\nfunction getNativeWebSocket() {\n if (typeof WebSocket !== \"undefined\")\n return WebSocket;\n if (typeof global.WebSocket !== \"undefined\")\n return global.WebSocket;\n if (typeof window.WebSocket !== \"undefined\")\n return window.WebSocket;\n if (typeof self.WebSocket !== \"undefined\")\n return self.WebSocket;\n throw new Error(\"`WebSocket` is not supported in this environment\");\n}\n//# sourceMappingURL=utils.js.map\n\n//# sourceURL=webpack:///./node_modules/isows/_esm/utils.js?");

/***/ })

}]);
Loading

0 comments on commit 251d663

Please sign in to comment.