This file contains 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
import { Injectable } from '@angular/core'; | |
import { ContractService } from './contract.service'; | |
import { WalletService } from './wallet.service'; | |
/* | |
Usage: | |
- contract has a reference to the multicall address for the relevant network you're on | |
- format your argument to makeMulticall as a list of objects: | |
multicallFns = [ | |
"call1": { |
This file contains 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
import requests | |
import time | |
# change the address here to be your desired NFT | |
url = "https://api.opensea.io/asset/0xc17030798a6d6e1a76382cf8f439182eb0342d93/" | |
update_flag = "/?force_update=true" | |
ids = [ i for i in range(0, 180)] | |
for i in ids: |