This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.6.0; | |
import "openzeppelin-solidity/contracts/access/Roles.sol"; | |
import "openzeppelin-solidity/contracts/ownership/Ownable.sol"; | |
contract AgentRole is Ownable { | |
using Roles for Roles.Role; | |
event AgentAdded(address indexed account); | |
event AgentRemoved(address indexed account); |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"model": "callback.sendqueue", "pk": 1, "fields": {"contract": "PricingTable", "method": "addPricingTableItem", "params": [[5000000, 10000000, 1, 20, 29, 80000, 90000, 6500, 7000, 1200, 1600, true]], "sent": true, "success": true, "txid": "0x8595dc92d4c1d3be45ac122f49b1d9b5d1e0e862c605a2de623d1734f3f53a02", "db_object_id": 1, "returned": 606, "created": "2021-09-27T18:15:35.026", "updated": "2021-09-27T18:15:40.641"}}, {"model": "callback.sendqueue", "pk": 2, "fields": {"contract": "PricingTable", "method": "addPricingTableItem", "params": [[5000000, 10000000, 3, 20, 29, 80000, 90000, 7000, 7500, 1200, 1600, true]], "sent": true, "success": true, "txid": "0x3a6b6d598ddabbf8715b3bfe2c773033d5f8d7b447ceb871e7ce07244f5777f6", "db_object_id": 2, "returned": 607, "created": "2021-09-27T18:15:42.728", "updated": "2021-09-27T18:15:46.690"}}, {"model": "callback.sendqueue", "pk": 3, "fields": {"contract": "PricingTable", "method": "addPricingTableItem", "params": [[5000000, 10000000, 5, 20, 29, 70000, 90000, 7500, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sources flattened with hardhat v2.7.0 https://hardhat.org | |
// File @openzeppelin/contracts/utils/[email protected] | |
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol) | |
pragma solidity ^0.8.0; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: Unlicensed | |
pragma solidity ^0.8.12; | |
import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/IERC20.sol"; | |
contract TestContract { | |
address mySonAddress; | |
uint amountToSend; | |
uint expirationDate; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: Unlicensed | |
pragma solidity ^0.8.12; | |
contract TestContract { | |
uint public myUint = 111222333444555; | |
string private myString; | |
address public myAddress; | |
constructor(string memory _newString) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
*Submitted for verification at Etherscan.io on 2021-10-19 | |
*/ | |
// SPDX-License-Identifier: MIT | |
// File @openzeppelin/contracts/token/ERC20/[email protected] | |
pragma solidity ^0.8.0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: Unlicensed | |
pragma solidity ^0.8.12; | |
contract Test { | |
function getBytes32() external pure returns (bytes32, bytes32) { | |
bytes32 withString = keccak256(abi.encode("0x0000000000000000000000000000000000000000000000000000000000000001")); | |
bytes32 withBytes32 = keccak256(abi.encode(0x0000000000000000000000000000000000000000000000000000000000000001)); | |
return (withString, withBytes32); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol"; | |
contract TestERC1155 is ERC1155 { | |
constructor() ERC1155 ("test") { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-2.0-or-later | |
// File @uniswap/v3-core/contracts/interfaces/pool/[email protected] | |
pragma solidity >=0.5.0; | |
/// @title Pool state that never changes | |
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values | |
interface IUniswapV3PoolImmutables { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { ethers } = require("ethers"); | |
// Function to extract the address associated with to a transaction | |
async function getPublicKeyFromTransactionHash(provider, txHash) { | |
// Fetch the transaction using the transaction hash and provier | |
const tx = await provider.getTransaction(txHash); | |
// Extract the all the relevant fields from the transaction (We need all of them) | |
const unsignedTx = { | |
gasLimit: tx.gasLimit, |
OlderNewer