Skip to content

Commit

Permalink
πŸš€πŸ‘œ ↝ Adding CDN/constants from client, ref to profile sandbox contents
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Feb 20, 2023
1 parent 5d07d4a commit 61a6ff3
Show file tree
Hide file tree
Showing 14 changed files with 1,617 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions Server/constants/cdn.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const imagesCdnAddress = 'https://qwbufbmxkjfaikoloudl.supabase.co/storage/v1/object/public/images/'
export const generatorCdnInfo = 'https://github.com/Signal-K/client/commit/ab6b6db464602535a7ca9e471956e021ffbf3c95'
7 changes: 7 additions & 0 deletions Server/constants/contractAddresses.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const HELPER_ADDRESS = '0xcf05AB21cAa609c81D6DfF435F0F8808A05EA264'; // custom contract
// 0xcf05AB21cAa609c81D6DfF435F0F8808A05EA264 is deployed from the correct wallet, but has a problem - it points to the Planets contract as the multitools contract (i.e. the planets are both the required nft and the nft that is being staked. This could be implemented in future...but for now we need to fix this. So I've redeployed it on a new address (see above line) with the correct pointer). See https://skinetics.notion.site/Planet-Mining-multitool-8310fa1cd188440688bbcc19692b3b67. Derived from https://thirdweb.com/0xCdc5929e1158F7f0B320e3B942528E6998D8b25c/PlanetHelper/1.0.1?via=/goerli/0xcf05AB21cAa609c81D6DfF435F0F8808A05EA264
export const MULTITOOLS_ADDRESS = '0xF846D262EeBAFbfA79017b43aBb0251F740a0619';
export const PLANETS_ADDRESS = '0xdf35Bb26d9AAD05EeC5183c6288f13c0136A7b43'; // edition drop (erc1155)
export const MINERALS_ADDRESS = '0xE938775F4ee4913470905885c9744C7FAD482991';

// Note that this is on the Goerli test net
8 changes: 8 additions & 0 deletions Server/constants/contractMappingResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { BigNumber } from "ethers";

type ContractMappingResponse = {
isData: boolean;
value: BigNumber;
};

export default ContractMappingResponse;
Loading

0 comments on commit 61a6ff3

Please sign in to comment.