@artblocks/contracts 1.2.1 → 1.3.0
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.
- package/artifacts/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol/BytecodeStorageReaderContractV2_Web3Call.json +201 -0
- package/artifacts/contracts/BytecodeStorageReaders/UniversalBytecodeStorageReader.sol/UniversalBytecodeStorageReader.json +2 -2
- package/artifacts/contracts/DependencyRegistryV0.sol/DependencyRegistryV0.json +42 -53
- package/artifacts/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol/GenArt721CoreV3_Engine_Flex.json +2 -2
- package/artifacts/contracts/generator/GenArt721GeneratorV0.sol/GenArt721GeneratorV0.json +2 -2
- package/artifacts/contracts/interfaces/v0.8.x/IDelegateRegistry.sol/IDelegateRegistry.json +820 -0
- package/artifacts/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol/IDependencyRegistryV0.json +13 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol/IPMPAugmentHook.json +83 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol/IPMPConfigureHook.json +80 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPV0.sol/IPMPV0.json +402 -0
- package/artifacts/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol/IUniversalBytecodeStorageReader.json +13 -0
- package/artifacts/contracts/interfaces/v0.8.x/IWeb3Call.sol/IWeb3Call.json +47 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol/DelegateRegistry.json +846 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol/RegistryHashes.json +10 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol/RegistryOps.json +10 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol/RegistryStorage.json +10 -0
- package/artifacts/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol/DependencyRegistryStorageLib.json +2 -2
- package/artifacts/contracts/libs/v0.8.x/ImmutableStringArray.sol/ImmutableStringArray.json +10 -0
- package/artifacts/contracts/libs/v0.8.x/V3FlexLib.sol/V3FlexLib.json +2 -2
- package/artifacts/contracts/mock/ImmutableStringArrayMock.sol/ImmutableStringArrayMock.json +69 -0
- package/artifacts/contracts/mock/MockPMPAugmentHook.sol/MockPMPAugmentHook.json +214 -0
- package/artifacts/contracts/mock/MockPMPConfigureHook.sol/MockPMPConfigureHook.json +236 -0
- package/artifacts/contracts/web3call/PMPV0.sol/PMPV0.json +629 -0
- package/artifacts/contracts/web3call/Web3Call.sol/Web3Call.json +66 -0
- package/artifacts/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol/AbstractPMPAugmentHook.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectBaseGasFee.sol/InjectBaseGasFee.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/IUniswapV2Pair.json +60 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/InjectChromieSquiggleFloorPrice.json +107 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol/InjectIsNounsDaoMember.json +96 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol/InjectIsProjectFullyMinted.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol/InjectPolyptychTokenHash.json +141 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol/InjectTokenHashSeed.json +99 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwner.sol/InjectTokenOwner.json +99 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol/InjectTokenOwnerEthBalance.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol/InjectUSDCTotalSupply.json +107 -0
- package/artifacts/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol/AbstractPMPConfigureHook.json +80 -0
- package/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol +128 -0
- package/contracts/DependencyRegistryV0.sol +67 -28
- package/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol +7 -1
- package/contracts/generator/GenArt721GeneratorV0.sol +77 -8
- package/contracts/interfaces/v0.8.x/IDelegateRegistry.sol +318 -0
- package/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol +2 -0
- package/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol +31 -0
- package/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol +25 -0
- package/contracts/interfaces/v0.8.x/IPMPV0.sol +224 -0
- package/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol +5 -0
- package/contracts/interfaces/v0.8.x/IWeb3Call.sol +28 -0
- package/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol +753 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol +359 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol +31 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol +87 -0
- package/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol +3 -0
- package/contracts/libs/v0.8.x/ImmutableStringArray.sol +289 -0
- package/contracts/libs/v0.8.x/V3FlexLib.sol +7 -1
- package/contracts/mock/ImmutableStringArrayMock.sol +47 -0
- package/contracts/mock/MockPMPAugmentHook.sol +170 -0
- package/contracts/mock/MockPMPConfigureHook.sol +78 -0
- package/contracts/web3call/PMPV0.sol +1125 -0
- package/contracts/web3call/Web3Call.sol +25 -0
- package/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol +46 -0
- package/contracts/web3call/augment-hooks/InjectBaseGasFee.sol +57 -0
- package/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol +103 -0
- package/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol +66 -0
- package/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol +73 -0
- package/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol +88 -0
- package/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol +62 -0
- package/contracts/web3call/augment-hooks/InjectTokenOwner.sol +60 -0
- package/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol +61 -0
- package/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol +69 -0
- package/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol +41 -0
- package/package.json +5 -5
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "Web3Call",
|
|
4
|
+
"sourceName": "contracts/web3call/Web3Call.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "coreContract",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "uint256",
|
|
15
|
+
"name": "tokenId",
|
|
16
|
+
"type": "uint256"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"name": "getTokenParams",
|
|
20
|
+
"outputs": [
|
|
21
|
+
{
|
|
22
|
+
"components": [
|
|
23
|
+
{
|
|
24
|
+
"internalType": "string",
|
|
25
|
+
"name": "key",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"internalType": "string",
|
|
30
|
+
"name": "value",
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
35
|
+
"name": "tokenParams",
|
|
36
|
+
"type": "tuple[]"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"stateMutability": "view",
|
|
40
|
+
"type": "function"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [
|
|
44
|
+
{
|
|
45
|
+
"internalType": "bytes4",
|
|
46
|
+
"name": "interfaceId",
|
|
47
|
+
"type": "bytes4"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "supportsInterface",
|
|
51
|
+
"outputs": [
|
|
52
|
+
{
|
|
53
|
+
"internalType": "bool",
|
|
54
|
+
"name": "",
|
|
55
|
+
"type": "bool"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"stateMutability": "view",
|
|
59
|
+
"type": "function"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"bytecode": "0x",
|
|
63
|
+
"deployedBytecode": "0x",
|
|
64
|
+
"linkReferences": {},
|
|
65
|
+
"deployedLinkReferences": {}
|
|
66
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "AbstractPMPAugmentHook",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "coreContract",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "uint256",
|
|
15
|
+
"name": "tokenId",
|
|
16
|
+
"type": "uint256"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"components": [
|
|
20
|
+
{
|
|
21
|
+
"internalType": "string",
|
|
22
|
+
"name": "key",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "string",
|
|
27
|
+
"name": "value",
|
|
28
|
+
"type": "string"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
32
|
+
"name": "tokenParams",
|
|
33
|
+
"type": "tuple[]"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "onTokenPMPReadAugmentation",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"components": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "string",
|
|
42
|
+
"name": "key",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"internalType": "string",
|
|
47
|
+
"name": "value",
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
52
|
+
"name": "augmentedTokenParams",
|
|
53
|
+
"type": "tuple[]"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"stateMutability": "view",
|
|
57
|
+
"type": "function"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "bytes4",
|
|
63
|
+
"name": "interfaceId",
|
|
64
|
+
"type": "bytes4"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"name": "supportsInterface",
|
|
68
|
+
"outputs": [
|
|
69
|
+
{
|
|
70
|
+
"internalType": "bool",
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "bool"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"stateMutability": "view",
|
|
76
|
+
"type": "function"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"bytecode": "0x",
|
|
80
|
+
"deployedBytecode": "0x",
|
|
81
|
+
"linkReferences": {},
|
|
82
|
+
"deployedLinkReferences": {}
|
|
83
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "InjectBaseGasFee",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/InjectBaseGasFee.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "uint256",
|
|
15
|
+
"name": "",
|
|
16
|
+
"type": "uint256"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"components": [
|
|
20
|
+
{
|
|
21
|
+
"internalType": "string",
|
|
22
|
+
"name": "key",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "string",
|
|
27
|
+
"name": "value",
|
|
28
|
+
"type": "string"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
32
|
+
"name": "tokenParams",
|
|
33
|
+
"type": "tuple[]"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "onTokenPMPReadAugmentation",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"components": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "string",
|
|
42
|
+
"name": "key",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"internalType": "string",
|
|
47
|
+
"name": "value",
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
52
|
+
"name": "augmentedTokenParams",
|
|
53
|
+
"type": "tuple[]"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"stateMutability": "view",
|
|
57
|
+
"type": "function"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "bytes4",
|
|
63
|
+
"name": "interfaceId",
|
|
64
|
+
"type": "bytes4"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"name": "supportsInterface",
|
|
68
|
+
"outputs": [
|
|
69
|
+
{
|
|
70
|
+
"internalType": "bool",
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "bool"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"stateMutability": "view",
|
|
76
|
+
"type": "function"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"bytecode": "0x608060405234801561001057600080fd5b5061069d806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806301ffc9a71461003b57806358f8699f14610063575b600080fd5b61004e610049366004610354565b610083565b60405190151581526020015b60405180910390f35b610076610071366004610385565b6100ba565b60405161005a9190610462565b60006001600160e01b031982166358f8699f60e01b14806100b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100ca8260016104e9565b9050806001600160401b038111156100e4576100e461050a565b60405190808252806020026020018201604052801561012957816020015b60408051808201909152606080825260208201528152602001906001900390816101025790505b50925060005b828110156101895785858281811061014957610149610520565b905060200281019061015b9190610536565b610164906105e2565b84828151811061017657610176610520565b602090810291909101015260010161012f565b5060408051608081018252600a918101918252696261736547617346656560b01b60608201529081524890602081016101c1836101ec565b8152508484815181106101d6576101d6610520565b6020026020010181905250505050949350505050565b606060006101f98361027e565b60010190506000816001600160401b038111156102185761021861050a565b6040519080825280601f01601f191660200182016040528015610242576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461024c57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102bd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b83106102e7576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061030557662386f26fc10000830492506010015b6305f5e100831061031d576305f5e100830492506008015b612710831061033157612710830492506004015b60648310610343576064830492506002015b600a83106100b45760010192915050565b60006020828403121561036657600080fd5b81356001600160e01b03198116811461037e57600080fd5b9392505050565b6000806000806060858703121561039b57600080fd5b84356001600160a01b03811681146103b257600080fd5b93506020850135925060408501356001600160401b03808211156103d557600080fd5b818701915087601f8301126103e957600080fd5b8135818111156103f857600080fd5b8860208260051b850101111561040d57600080fd5b95989497505060200194505050565b6000815180845260005b8181101561044257602081850181015186830182015201610426565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156104db57888303603f19018552815180518785526104af8886018261041c565b91890151858303868b01529190506104c7818361041c565b96890196945050509086019060010161048b565b509098975050505050505050565b808201808211156100b457634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261054c57600080fd5b9190910192915050565b600082601f83011261056757600080fd5b81356001600160401b03808211156105815761058161050a565b604051601f8301601f19908116603f011681019082821181831017156105a9576105a961050a565b816040528381528660208588010111156105c257600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000604082360312156105f457600080fd5b604080519081016001600160401b0380821183831017156106175761061761050a565b81604052843591508082111561062c57600080fd5b61063836838701610556565b8352602085013591508082111561064e57600080fd5b5061065b36828601610556565b6020830152509291505056fea264697066735822122085dedc230b8d557a7cf1cbf72ea7354a2fbd8f6d84b5af08d8f75f4d8570732364736f6c63430008160033",
|
|
80
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806301ffc9a71461003b57806358f8699f14610063575b600080fd5b61004e610049366004610354565b610083565b60405190151581526020015b60405180910390f35b610076610071366004610385565b6100ba565b60405161005a9190610462565b60006001600160e01b031982166358f8699f60e01b14806100b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100ca8260016104e9565b9050806001600160401b038111156100e4576100e461050a565b60405190808252806020026020018201604052801561012957816020015b60408051808201909152606080825260208201528152602001906001900390816101025790505b50925060005b828110156101895785858281811061014957610149610520565b905060200281019061015b9190610536565b610164906105e2565b84828151811061017657610176610520565b602090810291909101015260010161012f565b5060408051608081018252600a918101918252696261736547617346656560b01b60608201529081524890602081016101c1836101ec565b8152508484815181106101d6576101d6610520565b6020026020010181905250505050949350505050565b606060006101f98361027e565b60010190506000816001600160401b038111156102185761021861050a565b6040519080825280601f01601f191660200182016040528015610242576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461024c57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102bd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b83106102e7576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061030557662386f26fc10000830492506010015b6305f5e100831061031d576305f5e100830492506008015b612710831061033157612710830492506004015b60648310610343576064830492506002015b600a83106100b45760010192915050565b60006020828403121561036657600080fd5b81356001600160e01b03198116811461037e57600080fd5b9392505050565b6000806000806060858703121561039b57600080fd5b84356001600160a01b03811681146103b257600080fd5b93506020850135925060408501356001600160401b03808211156103d557600080fd5b818701915087601f8301126103e957600080fd5b8135818111156103f857600080fd5b8860208260051b850101111561040d57600080fd5b95989497505060200194505050565b6000815180845260005b8181101561044257602081850181015186830182015201610426565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156104db57888303603f19018552815180518785526104af8886018261041c565b91890151858303868b01529190506104c7818361041c565b96890196945050509086019060010161048b565b509098975050505050505050565b808201808211156100b457634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261054c57600080fd5b9190910192915050565b600082601f83011261056757600080fd5b81356001600160401b03808211156105815761058161050a565b604051601f8301601f19908116603f011681019082821181831017156105a9576105a961050a565b816040528381528660208588010111156105c257600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000604082360312156105f457600080fd5b604080519081016001600160401b0380821183831017156106175761061761050a565b81604052843591508082111561062c57600080fd5b61063836838701610556565b8352602085013591508082111561064e57600080fd5b5061065b36828601610556565b6020830152509291505056fea264697066735822122085dedc230b8d557a7cf1cbf72ea7354a2fbd8f6d84b5af08d8f75f4d8570732364736f6c63430008160033",
|
|
81
|
+
"linkReferences": {},
|
|
82
|
+
"deployedLinkReferences": {}
|
|
83
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IUniswapV2Pair",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "getReserves",
|
|
9
|
+
"outputs": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint112",
|
|
12
|
+
"name": "reserve0",
|
|
13
|
+
"type": "uint112"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "uint112",
|
|
17
|
+
"name": "reserve1",
|
|
18
|
+
"type": "uint112"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "uint32",
|
|
22
|
+
"name": "blockTimestampLast",
|
|
23
|
+
"type": "uint32"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"stateMutability": "view",
|
|
27
|
+
"type": "function"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"inputs": [],
|
|
31
|
+
"name": "token0",
|
|
32
|
+
"outputs": [
|
|
33
|
+
{
|
|
34
|
+
"internalType": "address",
|
|
35
|
+
"name": "",
|
|
36
|
+
"type": "address"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"stateMutability": "view",
|
|
40
|
+
"type": "function"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [],
|
|
44
|
+
"name": "token1",
|
|
45
|
+
"outputs": [
|
|
46
|
+
{
|
|
47
|
+
"internalType": "address",
|
|
48
|
+
"name": "",
|
|
49
|
+
"type": "address"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"stateMutability": "view",
|
|
53
|
+
"type": "function"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"bytecode": "0x",
|
|
57
|
+
"deployedBytecode": "0x",
|
|
58
|
+
"linkReferences": {},
|
|
59
|
+
"deployedLinkReferences": {}
|
|
60
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "InjectChromieSquiggleFloorPrice",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_nftxVaultPoolSquiggleWeth",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "nftxVaultPoolSquiggleWeth",
|
|
20
|
+
"outputs": [
|
|
21
|
+
{
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "",
|
|
24
|
+
"type": "address"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"stateMutability": "view",
|
|
28
|
+
"type": "function"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"inputs": [
|
|
32
|
+
{
|
|
33
|
+
"internalType": "address",
|
|
34
|
+
"name": "",
|
|
35
|
+
"type": "address"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"internalType": "uint256",
|
|
39
|
+
"name": "",
|
|
40
|
+
"type": "uint256"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"components": [
|
|
44
|
+
{
|
|
45
|
+
"internalType": "string",
|
|
46
|
+
"name": "key",
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"internalType": "string",
|
|
51
|
+
"name": "value",
|
|
52
|
+
"type": "string"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
56
|
+
"name": "tokenParams",
|
|
57
|
+
"type": "tuple[]"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"name": "onTokenPMPReadAugmentation",
|
|
61
|
+
"outputs": [
|
|
62
|
+
{
|
|
63
|
+
"components": [
|
|
64
|
+
{
|
|
65
|
+
"internalType": "string",
|
|
66
|
+
"name": "key",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"internalType": "string",
|
|
71
|
+
"name": "value",
|
|
72
|
+
"type": "string"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
76
|
+
"name": "augmentedTokenParams",
|
|
77
|
+
"type": "tuple[]"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"stateMutability": "view",
|
|
81
|
+
"type": "function"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"inputs": [
|
|
85
|
+
{
|
|
86
|
+
"internalType": "bytes4",
|
|
87
|
+
"name": "interfaceId",
|
|
88
|
+
"type": "bytes4"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"name": "supportsInterface",
|
|
92
|
+
"outputs": [
|
|
93
|
+
{
|
|
94
|
+
"internalType": "bool",
|
|
95
|
+
"name": "",
|
|
96
|
+
"type": "bool"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"stateMutability": "view",
|
|
100
|
+
"type": "function"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"bytecode": "0x60a060405234801561001057600080fd5b506040516109f53803806109f583398101604081905261002f91610040565b6001600160a01b0316608052610070565b60006020828403121561005257600080fd5b81516001600160a01b038116811461006957600080fd5b9392505050565b608051610964610091600039600081816073015261025501526109646000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a7146100465780634005a1011461006e57806358f8699f146100ad575b600080fd5b610059610054366004610545565b6100cd565b60405190151581526020015b60405180910390f35b6100957f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610065565b6100c06100bb36600461058e565b610104565b604051610065919061065f565b60006001600160e01b031982166358f8699f60e01b14806100fe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006101148260016106fc565b9050806001600160401b0381111561012e5761012e61070f565b60405190808252806020026020018201604052801561017357816020015b604080518082019091526060808252602082015281526020019060019003908161014c5790505b50925060005b828110156101d35785858281811061019357610193610725565b90506020028101906101a5919061073b565b6101ae906107e7565b8482815181106101c0576101c0610725565b6020908102919091010152600101610179565b5060006101de610250565b60408051608081018252601991810191825278666c6f6f7250726963654368726f6d69655371756967676c6560381b606082015290815290915060208101610225836103dd565b81525084848151811061023a5761023a610725565b6020026020010181905250505050949350505050565b6000807f00000000000000000000000000000000000000000000000000000000000000009050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156102b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102db9190610888565b50915091506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061034491906108d8565b90506001600160a01b038116738d137e3337eb1b58a222fef2b2cc7c423903d9cf036103a257826001600160701b0316826001600160701b0316670de0b6b3a764000061039191906108f5565b61039b919061090c565b94506103d6565b816001600160701b0316836001600160701b0316670de0b6b3a76400006103c991906108f5565b6103d3919061090c565b94505b5050505090565b606060006103ea8361046f565b60010190506000816001600160401b038111156104095761040961070f565b6040519080825280601f01601f191660200182016040528015610433576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461043d57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106104ae5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b83106104d8576904ee2d6d415b85acef8160201b830492506020015b662386f26fc1000083106104f657662386f26fc10000830492506010015b6305f5e100831061050e576305f5e100830492506008015b612710831061052257612710830492506004015b60648310610534576064830492506002015b600a83106100fe5760010192915050565b60006020828403121561055757600080fd5b81356001600160e01b03198116811461056f57600080fd5b9392505050565b6001600160a01b038116811461058b57600080fd5b50565b600080600080606085870312156105a457600080fd5b84356105af81610576565b93506020850135925060408501356001600160401b03808211156105d257600080fd5b818701915087601f8301126105e657600080fd5b8135818111156105f557600080fd5b8860208260051b850101111561060a57600080fd5b95989497505060200194505050565b6000815180845260005b8181101561063f57602081850181015186830182015201610623565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156106d857888303603f19018552815180518785526106ac88860182610619565b91890151858303868b01529190506106c48183610619565b968901969450505090860190600101610688565b509098975050505050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156100fe576100fe6106e6565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261075157600080fd5b9190910192915050565b600082601f83011261076c57600080fd5b81356001600160401b03808211156107865761078661070f565b604051601f8301601f19908116603f011681019082821181831017156107ae576107ae61070f565b816040528381528660208588010111156107c757600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000604082360312156107f957600080fd5b604080519081016001600160401b03808211838310171561081c5761081c61070f565b81604052843591508082111561083157600080fd5b61083d3683870161075b565b8352602085013591508082111561085357600080fd5b506108603682860161075b565b60208301525092915050565b80516001600160701b038116811461088357600080fd5b919050565b60008060006060848603121561089d57600080fd5b6108a68461086c565b92506108b46020850161086c565b9150604084015163ffffffff811681146108cd57600080fd5b809150509250925092565b6000602082840312156108ea57600080fd5b815161056f81610576565b80820281158282048414176100fe576100fe6106e6565b60008261092957634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204fe44ad5a5266ef475f41141ffc5d31b278bb1edd1817e7499946490fe438b5164736f6c63430008160033",
|
|
104
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a7146100465780634005a1011461006e57806358f8699f146100ad575b600080fd5b610059610054366004610545565b6100cd565b60405190151581526020015b60405180910390f35b6100957f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610065565b6100c06100bb36600461058e565b610104565b604051610065919061065f565b60006001600160e01b031982166358f8699f60e01b14806100fe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006101148260016106fc565b9050806001600160401b0381111561012e5761012e61070f565b60405190808252806020026020018201604052801561017357816020015b604080518082019091526060808252602082015281526020019060019003908161014c5790505b50925060005b828110156101d35785858281811061019357610193610725565b90506020028101906101a5919061073b565b6101ae906107e7565b8482815181106101c0576101c0610725565b6020908102919091010152600101610179565b5060006101de610250565b60408051608081018252601991810191825278666c6f6f7250726963654368726f6d69655371756967676c6560381b606082015290815290915060208101610225836103dd565b81525084848151811061023a5761023a610725565b6020026020010181905250505050949350505050565b6000807f00000000000000000000000000000000000000000000000000000000000000009050600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156102b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102db9190610888565b50915091506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061034491906108d8565b90506001600160a01b038116738d137e3337eb1b58a222fef2b2cc7c423903d9cf036103a257826001600160701b0316826001600160701b0316670de0b6b3a764000061039191906108f5565b61039b919061090c565b94506103d6565b816001600160701b0316836001600160701b0316670de0b6b3a76400006103c991906108f5565b6103d3919061090c565b94505b5050505090565b606060006103ea8361046f565b60010190506000816001600160401b038111156104095761040961070f565b6040519080825280601f01601f191660200182016040528015610433576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461043d57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106104ae5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b83106104d8576904ee2d6d415b85acef8160201b830492506020015b662386f26fc1000083106104f657662386f26fc10000830492506010015b6305f5e100831061050e576305f5e100830492506008015b612710831061052257612710830492506004015b60648310610534576064830492506002015b600a83106100fe5760010192915050565b60006020828403121561055757600080fd5b81356001600160e01b03198116811461056f57600080fd5b9392505050565b6001600160a01b038116811461058b57600080fd5b50565b600080600080606085870312156105a457600080fd5b84356105af81610576565b93506020850135925060408501356001600160401b03808211156105d257600080fd5b818701915087601f8301126105e657600080fd5b8135818111156105f557600080fd5b8860208260051b850101111561060a57600080fd5b95989497505060200194505050565b6000815180845260005b8181101561063f57602081850181015186830182015201610623565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156106d857888303603f19018552815180518785526106ac88860182610619565b91890151858303868b01529190506106c48183610619565b968901969450505090860190600101610688565b509098975050505050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156100fe576100fe6106e6565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261075157600080fd5b9190910192915050565b600082601f83011261076c57600080fd5b81356001600160401b03808211156107865761078661070f565b604051601f8301601f19908116603f011681019082821181831017156107ae576107ae61070f565b816040528381528660208588010111156107c757600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000604082360312156107f957600080fd5b604080519081016001600160401b03808211838310171561081c5761081c61070f565b81604052843591508082111561083157600080fd5b61083d3683870161075b565b8352602085013591508082111561085357600080fd5b506108603682860161075b565b60208301525092915050565b80516001600160701b038116811461088357600080fd5b919050565b60008060006060848603121561089d57600080fd5b6108a68461086c565b92506108b46020850161086c565b9150604084015163ffffffff811681146108cd57600080fd5b809150509250925092565b6000602082840312156108ea57600080fd5b815161056f81610576565b80820281158282048414176100fe576100fe6106e6565b60008261092957634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204fe44ad5a5266ef475f41141ffc5d31b278bb1edd1817e7499946490fe438b5164736f6c63430008160033",
|
|
105
|
+
"linkReferences": {},
|
|
106
|
+
"deployedLinkReferences": {}
|
|
107
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "InjectIsNounsDaoMember",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "nounsTokenAddress",
|
|
9
|
+
"outputs": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "address",
|
|
12
|
+
"name": "",
|
|
13
|
+
"type": "address"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"stateMutability": "view",
|
|
17
|
+
"type": "function"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [
|
|
21
|
+
{
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "coreContract",
|
|
24
|
+
"type": "address"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"internalType": "uint256",
|
|
28
|
+
"name": "tokenId",
|
|
29
|
+
"type": "uint256"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"components": [
|
|
33
|
+
{
|
|
34
|
+
"internalType": "string",
|
|
35
|
+
"name": "key",
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"internalType": "string",
|
|
40
|
+
"name": "value",
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
45
|
+
"name": "tokenParams",
|
|
46
|
+
"type": "tuple[]"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"name": "onTokenPMPReadAugmentation",
|
|
50
|
+
"outputs": [
|
|
51
|
+
{
|
|
52
|
+
"components": [
|
|
53
|
+
{
|
|
54
|
+
"internalType": "string",
|
|
55
|
+
"name": "key",
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"internalType": "string",
|
|
60
|
+
"name": "value",
|
|
61
|
+
"type": "string"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
65
|
+
"name": "augmentedTokenParams",
|
|
66
|
+
"type": "tuple[]"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"stateMutability": "view",
|
|
70
|
+
"type": "function"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"inputs": [
|
|
74
|
+
{
|
|
75
|
+
"internalType": "bytes4",
|
|
76
|
+
"name": "interfaceId",
|
|
77
|
+
"type": "bytes4"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"name": "supportsInterface",
|
|
81
|
+
"outputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "bool",
|
|
84
|
+
"name": "",
|
|
85
|
+
"type": "bool"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"stateMutability": "view",
|
|
89
|
+
"type": "function"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"bytecode": "0x608060405234801561001057600080fd5b506106f0806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a71461004657806358f8699f1461006e578063eabafceb1461008e575b600080fd5b610059610054366004610351565b6100b6565b60405190151581526020015b60405180910390f35b61008161007c36600461039a565b6100ed565b604051610065919061046b565b6100a9739c8ff314c9bc7f6e59a9d9225fb22946427edc0381565b60405161006591906104f2565b60006001600160e01b031982166358f8699f60e01b14806100e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100fd826001610506565b9050806001600160401b0381111561011757610117610527565b60405190808252806020026020018201604052801561015c57816020015b60408051808201909152606080825260208201528152602001906001900390816101355790505b50925060005b828110156101bc5785858281811061017c5761017c61053d565b905060200281019061018e9190610553565b610197906105ff565b8482815181106101a9576101a961053d565b6020908102919091010152600101610162565b506040516331a9108f60e11b8152600481018790526000906001600160a01b03891690636352211e90602401602060405180830381865afa158015610205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102299190610684565b6040516370a0823160e01b81529091506000908190739c8ff314c9bc7f6e59a9d9225fb22946427edc03906370a08231906102689086906004016104f2565b602060405180830381865afa158015610285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102a991906106a1565b6040805160808101825260109181019182526f34b9a737bab739a230b7a6b2b6b132b960811b6060820152908152911091506020810182610307576040518060400160405280600581526020016466616c736560d81b815250610325565b604051806040016040528060048152602001637472756560e01b8152505b81525085858151811061033a5761033a61053d565b602002602001018190525050505050949350505050565b60006020828403121561036357600080fd5b81356001600160e01b03198116811461037b57600080fd5b9392505050565b6001600160a01b038116811461039757600080fd5b50565b600080600080606085870312156103b057600080fd5b84356103bb81610382565b93506020850135925060408501356001600160401b03808211156103de57600080fd5b818701915087601f8301126103f257600080fd5b81358181111561040157600080fd5b8860208260051b850101111561041657600080fd5b95989497505060200194505050565b6000815180845260005b8181101561044b5760208185018101518683018201520161042f565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156104e457888303603f19018552815180518785526104b888860182610425565b91890151858303868b01529190506104d08183610425565b968901969450505090860190600101610494565b509098975050505050505050565b6001600160a01b0391909116815260200190565b808201808211156100e757634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261056957600080fd5b9190910192915050565b600082601f83011261058457600080fd5b81356001600160401b038082111561059e5761059e610527565b604051601f8301601f19908116603f011681019082821181831017156105c6576105c6610527565b816040528381528660208588010111156105df57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006040823603121561061157600080fd5b604080519081016001600160401b03808211838310171561063457610634610527565b81604052843591508082111561064957600080fd5b61065536838701610573565b8352602085013591508082111561066b57600080fd5b5061067836828601610573565b60208301525092915050565b60006020828403121561069657600080fd5b815161037b81610382565b6000602082840312156106b357600080fd5b505191905056fea26469706673582212204fd30584e10a9d16493a9718e80deb946bd7d601189646cbceb0136cdfbbd89464736f6c63430008160033",
|
|
93
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a71461004657806358f8699f1461006e578063eabafceb1461008e575b600080fd5b610059610054366004610351565b6100b6565b60405190151581526020015b60405180910390f35b61008161007c36600461039a565b6100ed565b604051610065919061046b565b6100a9739c8ff314c9bc7f6e59a9d9225fb22946427edc0381565b60405161006591906104f2565b60006001600160e01b031982166358f8699f60e01b14806100e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100fd826001610506565b9050806001600160401b0381111561011757610117610527565b60405190808252806020026020018201604052801561015c57816020015b60408051808201909152606080825260208201528152602001906001900390816101355790505b50925060005b828110156101bc5785858281811061017c5761017c61053d565b905060200281019061018e9190610553565b610197906105ff565b8482815181106101a9576101a961053d565b6020908102919091010152600101610162565b506040516331a9108f60e11b8152600481018790526000906001600160a01b03891690636352211e90602401602060405180830381865afa158015610205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102299190610684565b6040516370a0823160e01b81529091506000908190739c8ff314c9bc7f6e59a9d9225fb22946427edc03906370a08231906102689086906004016104f2565b602060405180830381865afa158015610285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102a991906106a1565b6040805160808101825260109181019182526f34b9a737bab739a230b7a6b2b6b132b960811b6060820152908152911091506020810182610307576040518060400160405280600581526020016466616c736560d81b815250610325565b604051806040016040528060048152602001637472756560e01b8152505b81525085858151811061033a5761033a61053d565b602002602001018190525050505050949350505050565b60006020828403121561036357600080fd5b81356001600160e01b03198116811461037b57600080fd5b9392505050565b6001600160a01b038116811461039757600080fd5b50565b600080600080606085870312156103b057600080fd5b84356103bb81610382565b93506020850135925060408501356001600160401b03808211156103de57600080fd5b818701915087601f8301126103f257600080fd5b81358181111561040157600080fd5b8860208260051b850101111561041657600080fd5b95989497505060200194505050565b6000815180845260005b8181101561044b5760208185018101518683018201520161042f565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b838110156104e457888303603f19018552815180518785526104b888860182610425565b91890151858303868b01529190506104d08183610425565b968901969450505090860190600101610494565b509098975050505050505050565b6001600160a01b0391909116815260200190565b808201808211156100e757634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e1983360301811261056957600080fd5b9190910192915050565b600082601f83011261058457600080fd5b81356001600160401b038082111561059e5761059e610527565b604051601f8301601f19908116603f011681019082821181831017156105c6576105c6610527565b816040528381528660208588010111156105df57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006040823603121561061157600080fd5b604080519081016001600160401b03808211838310171561063457610634610527565b81604052843591508082111561064957600080fd5b61065536838701610573565b8352602085013591508082111561066b57600080fd5b5061067836828601610573565b60208301525092915050565b60006020828403121561069657600080fd5b815161037b81610382565b6000602082840312156106b357600080fd5b505191905056fea26469706673582212204fd30584e10a9d16493a9718e80deb946bd7d601189646cbceb0136cdfbbd89464736f6c63430008160033",
|
|
94
|
+
"linkReferences": {},
|
|
95
|
+
"deployedLinkReferences": {}
|
|
96
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "InjectIsProjectFullyMinted",
|
|
4
|
+
"sourceName": "contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "coreContract",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "uint256",
|
|
15
|
+
"name": "tokenId",
|
|
16
|
+
"type": "uint256"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"components": [
|
|
20
|
+
{
|
|
21
|
+
"internalType": "string",
|
|
22
|
+
"name": "key",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "string",
|
|
27
|
+
"name": "value",
|
|
28
|
+
"type": "string"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
32
|
+
"name": "tokenParams",
|
|
33
|
+
"type": "tuple[]"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "onTokenPMPReadAugmentation",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"components": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "string",
|
|
42
|
+
"name": "key",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"internalType": "string",
|
|
47
|
+
"name": "value",
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"internalType": "struct IWeb3Call.TokenParam[]",
|
|
52
|
+
"name": "augmentedTokenParams",
|
|
53
|
+
"type": "tuple[]"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"stateMutability": "view",
|
|
57
|
+
"type": "function"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "bytes4",
|
|
63
|
+
"name": "interfaceId",
|
|
64
|
+
"type": "bytes4"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"name": "supportsInterface",
|
|
68
|
+
"outputs": [
|
|
69
|
+
{
|
|
70
|
+
"internalType": "bool",
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "bool"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"stateMutability": "view",
|
|
76
|
+
"type": "function"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"bytecode": "0x608060405234801561001057600080fd5b506106b1806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806301ffc9a71461003b57806358f8699f14610063575b600080fd5b61004e6100493660046102d2565b610083565b60405190151581526020015b60405180910390f35b610076610071366004610303565b6100ba565b60405161005a91906103e0565b60006001600160e01b031982166358f8699f60e01b14806100b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100ca826001610467565b9050806001600160401b038111156100e4576100e4610488565b60405190808252806020026020018201604052801561012957816020015b60408051808201909152606080825260208201528152602001906001900390816101025790505b50925060005b82811015610189578585828181106101495761014961049e565b905060200281019061015b91906104b4565b61016490610560565b8482815181106101765761017661049e565b602090810291909101015260010161012f565b506000610195876102c3565b9050600080896001600160a01b0316630ea5613f846040518263ffffffff1660e01b81526004016101c891815260200190565b60c060405180830381865afa1580156101e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020991906105fa565b50505050915091506040518060400160405280604051806040016040528060148152602001731a5cd41c9bda9958dd119d5b1b1e535a5b9d195960621b8152508152602001828414610278576040518060400160405280600581526020016466616c736560d81b815250610296565b604051806040016040528060048152602001637472756560e01b8152505b8152508686815181106102ab576102ab61049e565b60200260200101819052505050505050949350505050565b60006100b4620f424083610659565b6000602082840312156102e457600080fd5b81356001600160e01b0319811681146102fc57600080fd5b9392505050565b6000806000806060858703121561031957600080fd5b84356001600160a01b038116811461033057600080fd5b93506020850135925060408501356001600160401b038082111561035357600080fd5b818701915087601f83011261036757600080fd5b81358181111561037657600080fd5b8860208260051b850101111561038b57600080fd5b95989497505060200194505050565b6000815180845260005b818110156103c0576020818501810151868301820152016103a4565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b8381101561045957888303603f190185528151805187855261042d8886018261039a565b91890151858303868b0152919050610445818361039a565b968901969450505090860190600101610409565b509098975050505050505050565b808201808211156100b457634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e198336030181126104ca57600080fd5b9190910192915050565b600082601f8301126104e557600080fd5b81356001600160401b03808211156104ff576104ff610488565b604051601f8301601f19908116603f0116810190828211818310171561052757610527610488565b8160405283815286602085880101111561054057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006040823603121561057257600080fd5b604080519081016001600160401b03808211838310171561059557610595610488565b8160405284359150808211156105aa57600080fd5b6105b6368387016104d4565b835260208501359150808211156105cc57600080fd5b506105d9368286016104d4565b60208301525092915050565b805180151581146105f557600080fd5b919050565b60008060008060008060c0878903121561061357600080fd5b865195506020870151945061062a604088016105e5565b9350610638606088016105e5565b92506080870151915061064d60a088016105e5565b90509295509295509295565b60008261067657634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212201247d0807f16c124afe76c0daea7f3f6d4825501bee486857d8c50379f4c156164736f6c63430008160033",
|
|
80
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806301ffc9a71461003b57806358f8699f14610063575b600080fd5b61004e6100493660046102d2565b610083565b60405190151581526020015b60405180910390f35b610076610071366004610303565b6100ba565b60405161005a91906103e0565b60006001600160e01b031982166358f8699f60e01b14806100b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60608160006100ca826001610467565b9050806001600160401b038111156100e4576100e4610488565b60405190808252806020026020018201604052801561012957816020015b60408051808201909152606080825260208201528152602001906001900390816101025790505b50925060005b82811015610189578585828181106101495761014961049e565b905060200281019061015b91906104b4565b61016490610560565b8482815181106101765761017661049e565b602090810291909101015260010161012f565b506000610195876102c3565b9050600080896001600160a01b0316630ea5613f846040518263ffffffff1660e01b81526004016101c891815260200190565b60c060405180830381865afa1580156101e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020991906105fa565b50505050915091506040518060400160405280604051806040016040528060148152602001731a5cd41c9bda9958dd119d5b1b1e535a5b9d195960621b8152508152602001828414610278576040518060400160405280600581526020016466616c736560d81b815250610296565b604051806040016040528060048152602001637472756560e01b8152505b8152508686815181106102ab576102ab61049e565b60200260200101819052505050505050949350505050565b60006100b4620f424083610659565b6000602082840312156102e457600080fd5b81356001600160e01b0319811681146102fc57600080fd5b9392505050565b6000806000806060858703121561031957600080fd5b84356001600160a01b038116811461033057600080fd5b93506020850135925060408501356001600160401b038082111561035357600080fd5b818701915087601f83011261036757600080fd5b81358181111561037657600080fd5b8860208260051b850101111561038b57600080fd5b95989497505060200194505050565b6000815180845260005b818110156103c0576020818501810151868301820152016103a4565b506000602082860101526020601f19601f83011685010191505092915050565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b8381101561045957888303603f190185528151805187855261042d8886018261039a565b91890151858303868b0152919050610445818361039a565b968901969450505090860190600101610409565b509098975050505050505050565b808201808211156100b457634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e198336030181126104ca57600080fd5b9190910192915050565b600082601f8301126104e557600080fd5b81356001600160401b03808211156104ff576104ff610488565b604051601f8301601f19908116603f0116810190828211818310171561052757610527610488565b8160405283815286602085880101111561054057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006040823603121561057257600080fd5b604080519081016001600160401b03808211838310171561059557610595610488565b8160405284359150808211156105aa57600080fd5b6105b6368387016104d4565b835260208501359150808211156105cc57600080fd5b506105d9368286016104d4565b60208301525092915050565b805180151581146105f557600080fd5b919050565b60008060008060008060c0878903121561061357600080fd5b865195506020870151945061062a604088016105e5565b9350610638606088016105e5565b92506080870151915061064d60a088016105e5565b90509295509295509295565b60008261067657634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212201247d0807f16c124afe76c0daea7f3f6d4825501bee486857d8c50379f4c156164736f6c63430008160033",
|
|
81
|
+
"linkReferences": {},
|
|
82
|
+
"deployedLinkReferences": {}
|
|
83
|
+
}
|