Skip to content

Commit f6ab027

Browse files
authored
fix: add dist folder
2 parents a4118c4 + 7f08ccc commit f6ab027

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+946
-8
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Build directory
2-
/dist
3-
41
# Logs
52
logs
63
*.log

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ npm install --save-dev request-xdeployer @nomiclabs/hardhat-ethers @openzeppelin
1515

1616
Or if you are using [Yarn](https://classic.yarnpkg.com):
1717
```bash
18-
yarn add --dev request-xdeployer @nomiclabs/hardhat-ethers @openzeppelin/contracts
18+
yarn add --dev @requestnetwork/xdeployer @nomiclabs/hardhat-ethers @openzeppelin/contracts
1919
```
2020
> **Note:** This plugin uses the optional chaining operator (`?.`). Optional chaining is _not_ supported in Node.js v13 and below.
2121
2222
In your `hardhat.config.ts`:
2323
```ts
24-
import "xdeployer";
24+
import "@requestnetwork/xdeployer";
2525
```
2626

2727
## Required Plugins

dist/src/abi/Create2Deployer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[
2+
"event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)",
3+
"event Paused(address account)",
4+
"event Unpaused(address account)",
5+
"function computeAddress(bytes32 salt, bytes32 codeHash) view returns (address)",
6+
"function computeAddressWithDeployer(bytes32 salt, bytes32 codeHash, address deployer) pure returns (address)",
7+
"function deploy(uint256 value, bytes32 salt, bytes code)",
8+
"function deployERC1820Implementer(uint256 value, bytes32 salt)",
9+
"function killCreate2Deployer(address payoutAddress)",
10+
"function owner() view returns (address)",
11+
"function pause()",
12+
"function paused() view returns (bool)",
13+
"function renounceOwnership()",
14+
"function transferOwnership(address newOwner)",
15+
"function unpause()"
16+
]

dist/src/config.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { ConfigExtender } from "hardhat/types";
2+
export declare const xdeployConfigExtender: ConfigExtender;
3+
//# sourceMappingURL=config.d.ts.map

dist/src/config.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/config.js

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/config.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/constants.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export declare const CREATE2_DEPLOYER_ADDRESS = "0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2";
2+
export declare const AMOUNT = 0;
3+
export declare const GASLIMIT: number;
4+
export declare const PLUGIN_NAME = "xdeployer";
5+
export declare const TASK_VERIFY_NETWORK_ARGUMENTS = "verify:get-network-arguments";
6+
export declare const TASK_VERIFY_SUPPORTED_NETWORKS = "verify:get-supported-networks";
7+
export declare const TASK_VERIFY_EQUAL_ARGS_NETWORKS = "verify:get-equal-args-networks";
8+
export declare const TASK_VERIFY_SALT = "verify:get-salt";
9+
export declare const TASK_VERIFY_SIGNER = "verify:get-signer";
10+
export declare const TASK_VERIFY_CONTRACT = "verify:get-contract";
11+
export declare const TASK_VERIFY_GASLIMIT = "verify:get-gaslimit";
12+
export declare const TASK_VERIFY_DEPLOYER_ADDRESS = "verify:deployer-address";
13+
//# sourceMappingURL=constants.d.ts.map

dist/src/constants.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/constants.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)