Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@0xflair/evm-contracts

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0xflair/evm-contracts - npm Package Compare versions

Comparing version 1.7.7 to 1.8.0

common/EIP1167ClonesFactory.json

2

addresses.json

@@ -1,1 +0,1 @@

{"common/meta-transactions/UnorderedForwarder":{"4":"0x9D5a2a4c8Eb919c110AdFf8Caa7F900c1E6E5079","137":"0x5700b1Dde2A00Bca3A5f76F2b2Fe8CAf9CD06d48","421611":"0xE2cb3B6Ff2bcffCDDdDeca9FAff4d393f25ab5da","arbitrumTestnet":"0xE2cb3B6Ff2bcffCDDdDeca9FAff4d393f25ab5da","polygon":"0x5700b1Dde2A00Bca3A5f76F2b2Fe8CAf9CD06d48","rinkeby":"0x9D5a2a4c8Eb919c110AdFf8Caa7F900c1E6E5079"}}
{"streams/ERC721/presets/ERC721VestedDistributor":{"4":"0x0625c1271a5D0d669d989B9bf52bfC6Da33b1278","137":"0xe6f0E381874114034B358f65a0333cc80e4aD694","421611":"0x2f75ce3BfF041d81d41AB6e403002A17151dFC24","arbitrumTestnet":"0x2f75ce3BfF041d81d41AB6e403002A17151dFC24","polygon":"0xe6f0E381874114034B358f65a0333cc80e4aD694","rinkeby":"0x0625c1271a5D0d669d989B9bf52bfC6Da33b1278"},"common/meta-transactions/UnorderedForwarder":{"4":"0x9D5a2a4c8Eb919c110AdFf8Caa7F900c1E6E5079","137":"0x5700b1Dde2A00Bca3A5f76F2b2Fe8CAf9CD06d48","421611":"0x1FB4fE4354A49C784463FFA92DcCe53d499825ff","arbitrumTestnet":"0x1FB4fE4354A49C784463FFA92DcCe53d499825ff","polygon":"0x5700b1Dde2A00Bca3A5f76F2b2Fe8CAf9CD06d48","rinkeby":"0x9D5a2a4c8Eb919c110AdFf8Caa7F900c1E6E5079"}}
{
"name": "@0xflair/evm-contracts",
"version": "1.7.7",
"version": "1.8.0",
"description": "A monorepo containing all evm-based smart contracts and extensions used on Flair platform.",

@@ -31,5 +31,20 @@ "author": "Flair.Finance",

"release:dry": "semantic-release --branch main --dry-run --no-ci",
"deploy:mainnet": "npx hardhat deploy --network mainnet",
"deploy:ropsten": "npx hardhat deploy --network ropsten",
"deploy:rinkeby": "npx hardhat deploy --network rinkeby",
"deploy:goerli": "npx hardhat deploy --network goerli",
"deploy:sepolia": "npx hardhat deploy --network sepolia",
"deploy:arbitrumOne": "npx hardhat deploy --network arbitrumOne",
"deploy:arbitrumTestnet": "npx hardhat deploy --network arbitrumTestnet",
"deploy:polygon": "npx hardhat deploy --network polygon",
"deploy:arbitrumTestnet": "npx hardhat deploy --network arbitrumTestnet"
"deploy:polygonMumbai": "npx hardhat deploy --network polygonMumbai",
"verify:mainnet": "npx hardhat etherscan-verify --network mainnet",
"verify:ropsten": "npx hardhat etherscan-verify --network ropsten",
"verify:rinkeby": "npx hardhat etherscan-verify --network rinkeby",
"verify:goerli": "npx hardhat etherscan-verify --network goerli",
"verify:sepolia": "npx hardhat etherscan-verify --network sepolia",
"verify:arbitrumOne": "npx hardhat etherscan-verify --network arbitrumOne",
"verify:arbitrumTestnet": "npx hardhat etherscan-verify --network arbitrumTestnet",
"verify:polygon": "npx hardhat etherscan-verify --network polygon",
"verify:polygonMumbai": "npx hardhat etherscan-verify --network polygonMumbai"
},

@@ -79,3 +94,2 @@ "devDependencies": {

"hardhat-gas-reporter": "^1.0.8",
"jest": "^27.5.1",
"prettier": "^2.6.0",

@@ -82,0 +96,0 @@ "prettier-plugin-solidity": "^1.0.0-beta.13",

@@ -10,4 +10,10 @@ /* Autogenerated file. Do not edit manually. */

export type { Ownable } from "./Ownable";
export type { Initializable } from "./Initializable";
export type { ERC20 } from "./ERC20";
export type { IERC20Metadata } from "./IERC20Metadata";
export type { IERC20 } from "./IERC20";
export type { ERC721 } from "./ERC721";
export type { ERC721Enumerable } from "./ERC721Enumerable";
export type { ERC721URIStorage } from "./ERC721URIStorage";
export type { IERC721Enumerable } from "./IERC721Enumerable";
export type { IERC721Metadata } from "./IERC721Metadata";

@@ -55,2 +61,7 @@ export type { IERC721 } from "./IERC721";

export type { LibPart } from "./LibPart";
export type { ERC721BaseDistributor } from "./ERC721BaseDistributor";
export type { ERC721EqualShareDistributor } from "./ERC721EqualShareDistributor";
export type { ERC721VestedDistributor } from "./ERC721VestedDistributor";
export type { TestERC20 } from "./TestERC20";
export type { TestERC721 } from "./TestERC721";

@@ -63,4 +74,10 @@ export { IEIP2981RoyaltyOverride__factory } from "./factories/IEIP2981RoyaltyOverride__factory";

export { Ownable__factory } from "./factories/Ownable__factory";
export { Initializable__factory } from "./factories/Initializable__factory";
export { ERC20__factory } from "./factories/ERC20__factory";
export { IERC20Metadata__factory } from "./factories/IERC20Metadata__factory";
export { IERC20__factory } from "./factories/IERC20__factory";
export { ERC721__factory } from "./factories/ERC721__factory";
export { ERC721Enumerable__factory } from "./factories/ERC721Enumerable__factory";
export { ERC721URIStorage__factory } from "./factories/ERC721URIStorage__factory";
export { IERC721Enumerable__factory } from "./factories/IERC721Enumerable__factory";
export { IERC721Metadata__factory } from "./factories/IERC721Metadata__factory";

@@ -108,1 +125,6 @@ export { IERC721__factory } from "./factories/IERC721__factory";

export { LibPart__factory } from "./factories/LibPart__factory";
export { ERC721BaseDistributor__factory } from "./factories/ERC721BaseDistributor__factory";
export { ERC721EqualShareDistributor__factory } from "./factories/ERC721EqualShareDistributor__factory";
export { ERC721VestedDistributor__factory } from "./factories/ERC721VestedDistributor__factory";
export { TestERC20__factory } from "./factories/TestERC20__factory";
export { TestERC721__factory } from "./factories/TestERC721__factory";

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc