Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | import { web3Instance } from "src/boot/web3"; import { FILE, loadAllContract, loadSpecificContract, SUPPORTED_NETWORK } from "src/contracts/contract"; import { errorNotification } from "src/helper/notifications"; import { range } from "src/helper/utils"; import { ActionTree } from "vuex"; import { RootState } from ".."; import { ContractActionName, ContractMutationName } from "./names"; import { ContractState } from "./state"; const actions: ActionTree<ContractState, RootState> = { /** [Private] Setup ETH Address */ async [ContractActionName.setupAddress]({ commit, rootState }) { let acc: string[]; if (rootState.route.query.address) { acc = [rootState.route.query.address]; } else { acc = await web3Instance.getAvailableAddress(); } commit(ContractMutationName.setAddress, acc[0]); }, /** [Private] Load all NFTs (with img id) */ async [ContractActionName.loadAllNfts]( { state, commit, rootState }, name: string, network?: number ) { const currentNetwork = network || rootState.web3.network; if (!currentNetwork) { // if current network not exist return; } const currentNetworkName = SUPPORTED_NETWORK[currentNetwork]; // Generate an array (something like python range) const numArr = range( 0, state.contractDetails[currentNetworkName][name].balance ); // load function from contract.ts const { genImg, getSupportImgShortcut } = await import(`src/contracts/contract/${currentNetworkName}/${name}/contract.ts`); await Promise.all( numArr.map(async key => { const tokenId = await web3Instance.getTokenWithId(state.address, key); commit(ContractMutationName.addNftIds, { name, id: tokenId, network: currentNetworkName }); if (getSupportImgShortcut()) { // if shortcut exist commit(ContractMutationName.setNftImages, { id: tokenId, image: genImg({ id: tokenId }), network: currentNetworkName }); } else { // if shorcut not exist, make RPC call const uri = await web3Instance.getURI(tokenId); const res = await fetch(uri); const jsonData = await res.json(); commit(ContractMutationName.setNftImages, { id: tokenId, image: genImg({ id: tokenId }, jsonData), network: currentNetworkName }); } }) ); }, /** Load all JSON Contract JSON data */ async [ContractActionName.loadAllJson]( { state, commit, rootState }, nw?: string ) { const network = nw || rootState.web3.networkName || rootState.route.params.network; const jsonData = await loadAllContract(network); commit(ContractMutationName.setContractsData, { contracts: jsonData, names: FILE[network].filename, network }); }, /** Load Specific JSON Contract data */ async [ContractActionName.loadSpecificJson]( { commit, rootState }, { name, network }: { name: string; network: string } ) { const jsonData = await loadSpecificContract( network || rootState.web3.networkName, name ); // commit(ContractMutationName.setSpecificContractData, { name, contract: jsonData, network }); }, /** Update an array NFTs on balance (use in main page) */ async [ContractActionName.updateBalance]({ state, commit, rootState }) { const networkName = rootState.web3.networkName; const acc = state.address; Promise.all( Object.keys(state.contractDetails[networkName]).map(async contract => { const { name, address, abi } = state.contractDetails[networkName][ contract ]; await web3Instance.setContract({ abi, address, acc }); const bal = await web3Instance.getBalance(acc); commit(ContractMutationName.setContractsBalance, { name, bal, network: networkName }); }) ); }, /** Load all JSON Contract data */ async [ContractActionName.loadAllContracts]( { state, commit, dispatch }, network?: string ) { commit(ContractMutationName.setLoading, true); commit(ContractMutationName.updateCompKey); if (state.address === "") { await dispatch(ContractActionName.setupAddress); } await dispatch(ContractActionName.loadAllJson, network); const acc = state.address; if (acc === "") { errorNotification("contract.error.no_acc"); commit(ContractMutationName.setLoading, false); return; } dispatch(ContractActionName.updateBalance); commit(ContractMutationName.setLoading, false); }, async [ContractActionName.loadSpecificContract]( { state, commit, dispatch, rootState }, { name, network }: { name: string; network?: string } ) { const networkName = network || rootState.web3.networkName; if (state.address === "") { await dispatch(ContractActionName.setupAddress); } await dispatch(ContractActionName.loadSpecificJson, { name, network }); const acc = state.address; if (acc === "") { errorNotification("contract.error.no_acc"); commit(ContractMutationName.setLoading, false); return; } const { address, abi } = state.contractDetails[networkName][name]; await web3Instance.setContract({ abi, address, acc }); const bal = await web3Instance.getBalance(acc); commit(ContractMutationName.setContractsBalance, { name, bal, network }); if (bal === 0) { return; } dispatch(ContractActionName.loadAllNfts, name); } }; export default actions; |