Socket
Socket
Sign inDemoInstall

synthetix

Package Overview
Dependencies
320
Maintainers
3
Versions
434
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.100.0 to 2.100.1-alpha

publish/deployed/sepolia/config.json

25

index.js

@@ -9,4 +9,3 @@ 'use strict';

mainnet: require('./publish/deployed/mainnet'),
goerli: require('./publish/deployed/goerli'),
'goerli-ovm': require('./publish/deployed/goerli-ovm'),
sepolia: require('./publish/deployed/sepolia'),
'sepolia-ovm': require('./publish/deployed/sepolia-ovm'),

@@ -21,3 +20,3 @@ 'local-ovm': require('./publish/deployed/local-ovm'),

const networks = ['local', 'mainnet', 'goerli', 'sepolia'];
const networks = ['local', 'mainnet', 'sepolia'];

@@ -28,5 +27,2 @@ const chainIdMapping = Object.entries({

},
5: {
network: 'goerli',
},
// Hardhat fork of mainnet: https://hardhat.org/config/#hardhat-network

@@ -42,5 +38,4 @@ 31337: {

},
420: {
network: 'goerli',
useOvm: true,
11155111: {
network: 'sepolia',
},

@@ -170,16 +165,12 @@ 11155420: {

mainnet: '0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D',
goerli: '0x9B2fE385cEDea62D839E4dE89B0A23EF4eacC717',
// Adding zero addresses here - we don't actually support renBTC anymore.
'mainnet-ovm': '0x0000000000000000000000000000000000000000',
sepolia: '0x0000000000000000000000000000000000000000',
'sepolia-ovm': '0x0000000000000000000000000000000000000000',
// TODO: get actual goerli address
},
WETH_ERC20_ADDRESSES: {
mainnet: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
goerli: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6',
sepolia: '0x7b79995e5f793A07Bc00c21412e50Ecae098E7f9',
'mainnet-ovm': '0x4200000000000000000000000000000000000006',
'goerli-ovm': '0x4200000000000000000000000000000000000006',
'sepolia-ovm': '0x4200000000000000000000000000000000000006',
// TODO: get actual goerli-ovm address
},

@@ -742,10 +733,6 @@ INITIAL_ISSUANCE: w3utils.toWei(`${100e6}`),

}),
goerli: Object.assign({}, base, {
sepolia: Object.assign({}, base, {
owner: '0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9',
deployer: '0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9',
}),
'goerli-ovm': Object.assign({}, base, {
owner: '0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9',
deployer: '0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9',
}),
'sepolia-ovm': Object.assign({}, base, {

@@ -752,0 +739,0 @@ owner: '0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9',

{
"name": "synthetix",
"version": "2.100.0",
"version": "2.100.1-alpha",
"license": "MIT",

@@ -57,4 +57,3 @@ "author": "Synthetix",

"publish/deployed/mainnet-ovm/*",
"publish/deployed/goerli/*",
"publish/deployed/goerli-ovm/*",
"publish/deployed/sepolia/*",
"publish/deployed/sepolia-ovm/*",

@@ -61,0 +60,0 @@ "publish/deployed/local-ovm/*"

@@ -182,3 +182,3 @@ # Synthetix

// retrieve an object detailing the contract ABI and bytecode
snx.getSource({ network: 'goerli', contract: 'Proxy' });
snx.getSource({ network: 'sepolia', contract: 'Proxy' });
/*

@@ -202,7 +202,7 @@ {

// retrieve the array of synths used
snx.getSynths({ network: 'goerli' }).map(({ name }) => name);
snx.getSynths({ network: 'sepolia' }).map(({ name }) => name);
// ['sUSD', 'sEUR', ...]
// retrieve an object detailing the contract deployed to the given network.
snx.getTarget({ network: 'goerli', contract: 'ProxySynthetix' });
snx.getTarget({ network: 'sepolia', contract: 'ProxySynthetix' });
/*

@@ -213,6 +213,6 @@ {

source: 'Proxy',
link: 'https://goerli.etherscan.io/address/0x322A3346bf24363f451164d96A5b5cd5A7F4c337',
link: 'https://sepolia.etherscan.io/address/0x322A3346bf24363f451164d96A5b5cd5A7F4c337',
timestamp: '2019-03-06T23:05:43.914Z',
txn: '',
network: 'goerli'
network: 'sepolia'
}

@@ -244,3 +244,3 @@ */

release: 'Hadar',
network: 'goerli',
network: 'sepolia',
date: '2020-05-08T12:52:06-04:00',

@@ -254,3 +254,3 @@ commit: '19997724bc7eaceb902c523a6742e0bd74fc75cb',

snx.networks;
// [ 'local', 'goerli', 'mainnet' ]
// [ 'local', 'sepolia', 'mainnet' ]

@@ -287,5 +287,5 @@ snx.toBytes32('sUSD');

$ npx synthetix networks
[ 'local', 'goerli', 'mainnet' ]
[ 'local', 'sepolia', 'mainnet' ]
$ npx synthetix source --network goerli --contract Proxy
$ npx synthetix source --network sepolia --contract Proxy
{

@@ -299,6 +299,6 @@ "bytecode": "0..0",

$ npx synthetix synths --network goerli --key name
$ npx synthetix synths --network sepolia --key name
["sUSD", "sEUR", ... ]
$ npx synthetix target --network goerli --contract ProxySynthetix
$ npx synthetix target --network sepolia --contract ProxySynthetix
{

@@ -308,5 +308,5 @@ "name": "ProxySynthetix",

"source": "Proxy",
"link": "https://goerli.etherscan.io/address/0x322A3346bf24363f451164d96A5b5cd5A7F4c337",
"link": "https://sepolia.etherscan.io/address/0x322A3346bf24363f451164d96A5b5cd5A7F4c337",
"timestamp": "2019-03-06T23:05:43.914Z",
"network": "goerli"
"network": "sepolia"
}

@@ -313,0 +313,0 @@

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc