diff --git a/index.js b/index.js index 7a8d07f1af..c99077fd9c 100644 --- a/index.js +++ b/index.js @@ -11,6 +11,7 @@ const data = { mainnet: require('./publish/deployed/mainnet'), goerli: require('./publish/deployed/goerli'), 'goerli-ovm': require('./publish/deployed/goerli-ovm'), + 'local-ovm': require('./publish/deployed/local-ovm'), 'kovan-ovm': require('./publish/deployed/kovan-ovm'), 'mainnet-ovm': require('./publish/deployed/mainnet-ovm'), }; @@ -38,6 +39,10 @@ const chainIdMapping = Object.entries({ 42: { network: 'kovan', }, + 420: { + network: 'local', + useOvm: true, + }, // Hardhat fork of mainnet: https://hardhat.org/config/#hardhat-network 31337: { diff --git a/package.json b/package.json index f62b011f37..0dd3b0ee75 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,8 @@ "publish/deployed/mainnet/*", "publish/deployed/mainnet-ovm/*", "publish/deployed/goerli/*", - "publish/deployed/goerli-ovm/*" + "publish/deployed/goerli-ovm/*", + "publish/deployed/local-ovm/*" ], "bin": { "snx": "bin.js" diff --git a/publish/deployed/local-ovm/index.js b/publish/deployed/local-ovm/index.js new file mode 100644 index 0000000000..0f6a69ef45 --- /dev/null +++ b/publish/deployed/local-ovm/index.js @@ -0,0 +1,6 @@ +module.exports = { + deployment: require('./deployment.json'), + synths: require('./synths.json'), + rewards: require('./rewards.json'), + feeds: require('./feeds.json'), +};