mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-10-31 23:35:19 +01:00
603a25f26a
* Adding Tranfer eventHandler to subgraph.template.yaml * Started adding transfer event to mapping * updating getNftTokenWithID function * Pulling from Origin v4main * Removing console.log * Updating token Utils * Updating newOwner with User & writting new test * Updating test * Ensuring account is in lowercase * Creating seperate test for transfering an NFT query * Updating test name * Removing console.logs * Moviving transfer event tracking from factory to template * Moving handleNftTransferred to nftUpdate mapping * Adding logging * Using correct token address * Fix linting * Checking the correct owner account has been set originally
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
/* eslint-disable no-unused-vars */
|
|
const fs = require('fs')
|
|
let addresses = require('@oceanprotocol/contracts/addresses/address.json')
|
|
|
|
async function replaceContractAddresses() {
|
|
// load addresses file first
|
|
if (!process.argv[2]) {
|
|
console.error('Missing network..')
|
|
return
|
|
}
|
|
if (process.env.ADDRESS_FILE) {
|
|
console.log('Using custom ADDRESS_FILE instead of ocean-contracts npm dep')
|
|
addresses = JSON.parse(fs.readFileSync(process.env.ADDRESS_FILE, 'utf8'))
|
|
}
|
|
|
|
for (const network in addresses) {
|
|
if (process.argv[2] != network) {
|
|
console.log('Skipping ' + network)
|
|
continue
|
|
}
|
|
console.log('Creating subgraph.yaml for ' + network)
|
|
let subgraph = fs.readFileSync('./subgraph.template.yaml', 'utf8')
|
|
|
|
subgraph = subgraph.replace(/__NETWORK__/g, network)
|
|
subgraph = subgraph.replace(
|
|
/__STARTBLOCK__/g,
|
|
addresses[network].startBlock
|
|
)
|
|
subgraph = subgraph.replace(
|
|
/__ERC721FACTORYADDRESS__/g,
|
|
"'" + addresses[network].ERC721Factory + "'"
|
|
)
|
|
subgraph = subgraph.replace(
|
|
/__FACTORYROUTERADDRESS__/g,
|
|
"'" + addresses[network].Router + "'"
|
|
)
|
|
fs.writeFileSync('subgraph.yaml', subgraph, 'utf8')
|
|
}
|
|
}
|
|
|
|
replaceContractAddresses()
|