From 2377f3c36faaf40aa76fabc2cfebf85d5ac24ce9 Mon Sep 17 00:00:00 2001 From: "zapaz.eth" Date: Fri, 25 Oct 2024 19:11:08 +0200 Subject: [PATCH 1/3] fix pnpm version for github action --- .github/workflows/check.yml | 2 +- .github/workflows/deploy-dapp.yml | 4 ++-- .github/workflows/deploy-wp-plugin.yml | 2 +- config/src/config.handlebars.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 134c8b88d..90222bf0a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,7 +20,7 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v2.2.4 with: - version: 8.5.1 + version: 9.4.0 - name: Install all packages run: pnpm install-all diff --git a/.github/workflows/deploy-dapp.yml b/.github/workflows/deploy-dapp.yml index 5587f6567..997827e03 100644 --- a/.github/workflows/deploy-dapp.yml +++ b/.github/workflows/deploy-dapp.yml @@ -21,8 +21,8 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v2.2.4 with: - version: 8.5.1 - + version: 9.4.0 + - name: Build dapp run: pnpm build-dapp env: diff --git a/.github/workflows/deploy-wp-plugin.yml b/.github/workflows/deploy-wp-plugin.yml index bfb13cc12..5b75c8ea4 100644 --- a/.github/workflows/deploy-wp-plugin.yml +++ b/.github/workflows/deploy-wp-plugin.yml @@ -26,7 +26,7 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v4 with: - version: 8.15.7 + version: 9.4.0 - name: Build wp plugin run: pnpm deploy:plugin diff --git a/config/src/config.handlebars.json b/config/src/config.handlebars.json index fef51fb87..114c32062 100644 --- a/config/src/config.handlebars.json +++ b/config/src/config.handlebars.json @@ -1,6 +1,6 @@ { "version": { - "latest": "1.6.7", + "latest": "1.6.8", "stable": "1.6.6", "branch": "{{GIT_BRANCH}}", "commit": "{{GIT_COMMIT}}" From 715807b2fdddb77319dccd4c665641c584d4b773 Mon Sep 17 00:00:00 2001 From: "zapaz.eth" Date: Sat, 26 Oct 2024 09:42:37 +0200 Subject: [PATCH 2/3] use unique ALCHEMY_API_KEY and unique ETHERSCAN_API_KEY --- .github/workflows/check.yml | 3 -- .github/workflows/deploy-dapp.yml | 3 -- .github/workflows/deploy-wp-plugin.yml | 4 --- common/scripts/alchemy.http | 8 ++--- config/src/mainnets.handlebars.json | 42 +++++++++++++------------- config/src/testnets.handlebars.json | 20 ++++++------ config/turbo.json | 17 ----------- contracts/foundry.toml | 14 +-------- contracts/http/transactions.http | 2 +- example.env | 10 ------ tests/src/app.html | 2 +- 11 files changed, 38 insertions(+), 87 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 90222bf0a..4493f3fc8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -33,8 +33,5 @@ jobs: DEPLOYER_PRIVATE_KEY: KEY INFURA_API_KEY: KEY ALCHEMY_API_KEY: KEY - ALCHEMY_API_KEY_POLYGON: KEY - ALCHEMY_API_KEY_ARBITRUM: KEY - ALCHEMY_API_KEY_OPTIMISM: KEY COVALENT_API_KEY: KEY NFT_STORAGE_KEY: KEY diff --git a/.github/workflows/deploy-dapp.yml b/.github/workflows/deploy-dapp.yml index 997827e03..28c0f2c10 100644 --- a/.github/workflows/deploy-dapp.yml +++ b/.github/workflows/deploy-dapp.yml @@ -30,9 +30,6 @@ jobs: NODE_DEBUG: false INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} - ALCHEMY_API_KEY_POLYGON: ${{ secrets.ALCHEMY_API_KEY_POLYGON }} - ALCHEMY_API_KEY_ARBITRUM: ${{ secrets.ALCHEMY_API_KEY_ARBITRUM }} - ALCHEMY_API_KEY_OPTIMISM: ${{ secrets.ALCHEMY_API_KEY_OPTIMISM }} COVALENT_API_KEY: ${{ secrets.COVALENT_API_KEY }} NFT_STORAGE_KEY: ${{ secrets.NFT_STORAGE_KEY }} diff --git a/.github/workflows/deploy-wp-plugin.yml b/.github/workflows/deploy-wp-plugin.yml index 5b75c8ea4..026f9566c 100644 --- a/.github/workflows/deploy-wp-plugin.yml +++ b/.github/workflows/deploy-wp-plugin.yml @@ -36,10 +36,6 @@ jobs: GIT_BRANCH: main INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} - ALCHEMY_API_KEY_POLYGON: ${{ secrets.ALCHEMY_API_KEY_POLYGON }} - ALCHEMY_API_KEY_ARBITRUM: ${{ secrets.ALCHEMY_API_KEY_ARBITRUM }} - ALCHEMY_API_KEY_OPTIMISM: ${{ secrets.ALCHEMY_API_KEY_OPTIMISM }} - ALCHEMY_API_KEY_BASE: ${{ secrets.ALCHEMY_API_KEY_BASE }} ANKR_API_KEY: ${{ secrets.ANKR_API_KEY }} COVALENT_API_KEY: ${{ secrets.COVALENT_API_KEY }} NFT_STORAGE_KEY: ${{ secrets.NFT_STORAGE_KEY }} diff --git a/common/scripts/alchemy.http b/common/scripts/alchemy.http index 72c2b1d7c..32454463e 100644 --- a/common/scripts/alchemy.http +++ b/common/scripts/alchemy.http @@ -1,6 +1,6 @@ @method = gasPrice @urlEth = https://eth-mainnet.alchemyapi.io/v2/{{$dotenv ALCHEMY_API_KEY}} -@urlPol = https://polygon-mainnet.g.alchemy.com/v2/{{$dotenv ALCHEMY_API_KEY_POLYGON}} +@urlPol = https://polygon-mainnet.g.alchemy.com/v2/{{$dotenv ALCHEMY_API_KEY}} @address = 0x981ab0D817710d8FFFC5693383C00D985A3BDa38 ### getNFTs on mainnet from address without metadata @@ -15,11 +15,11 @@ GET {{urlEth}}/getContractMetadata?contractAddress=0xd07dc4262BCDbf85190C01c996b ### getContractMetadata on mainnet collection metadata erc721 GET {{urlEth}}/getContractMetadata?contractAddress=0xa406489360A47Af2C74fc1004316A64e469646A5 -### getContractMetadata on polygon collection metadata +### getContractMetadata on polygon collection metadata GET {{urlPol}}/getContractMetadata?contractAddress=0x875123bc716829Bb83a3eA2Db3AbD8BB8DCc3519 -### getContractMetadata on polygon collection metadata +### getContractMetadata on polygon collection metadata GET {{urlPol}}/getContractMetadata?contractAddress=0x76c52b2c4b2D2666663cE3318a5f35f912bd25C3 @@ -34,4 +34,4 @@ GET {{urlPol}}/getNFTs?owner={{address}} https://eth-mainnet.alchemyapi.io/v2/{{$dotenv ALCHEMY_API_KEY}}/getNFTs?owner=0x981ab0D817710d8FFFC5693383C00D985A3BDa38&withMetadata=false ### getNFTs -https://polygon-mainnet.g.alchemy.com/v2/{{$dotenv ALCHEMY_API_KEY_POLYGON}}/getNFTs?owner=0x981ab0D817710d8FFFC5693383C00D985A3BDa38&withMetadata=false +https://polygon-mainnet.g.alchemy.com/v2/{{$dotenv ALCHEMY_API_KEY}}/getNFTs?owner=0x981ab0D817710d8FFFC5693383C00D985A3BDa38&withMetadata=false diff --git a/config/src/mainnets.handlebars.json b/config/src/mainnets.handlebars.json index 7d696b579..8f45f1935 100644 --- a/config/src/mainnets.handlebars.json +++ b/config/src/mainnets.handlebars.json @@ -34,7 +34,7 @@ "chainName": "arbitrum", "rpcUrls": [ "https://rpc.ankr.com/arbitrum/{{ANKR_API_KEY}}", - "https://arb-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY_ARBITRUM}}", + "https://arb-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY}}", "https://arbitrum-mainnet.infura.io/v3/{{INFURA_API_KEY}}" ], "nativeCurrency": { @@ -46,9 +46,9 @@ "https://arbiscan.io", "https://explorer.arbitrum.io" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_ARBITRUM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "alchemy": { - "url": "https://arb-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY_ARBITRUM}}", + "url": "https://arb-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY}}", "active": true }, "create": true, @@ -77,7 +77,7 @@ "chainName": "optimism", "rpcUrls": [ "https://rpc.ankr.com/optimism/{{ANKR_API_KEY}}", - "https://opt-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY_OPTIMISM}}", + "https://opt-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY}}", "https://optimism-mainnet.infura.io/v3/{{INFURA_API_KEY}}", "https://mainnet.optimism.io" ], @@ -89,9 +89,9 @@ "blockExplorerUrls": [ "https://optimistic.etherscan.io" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_OPTIMISM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "alchemy": { - "url": "https://opt-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY_OPTIMISM}}", + "url": "https://opt-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY}}", "active": true }, "opstack": true, @@ -114,7 +114,7 @@ "https://scrollscan.com/", "https://blockscout.scroll.io" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_SCROLL}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "linkedLayer1": 1, "active": true, "create": true @@ -124,7 +124,7 @@ "chainName": "base", "rpcUrls": [ "https://rpc.ankr.com/base/{{ANKR_API_KEY}}", - "https://base-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY_BASE}}", + "https://base-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY}}", "https://mainnet.base.org/", "https://developer-access-mainnet.base.org/" ], @@ -138,11 +138,11 @@ "https://base.blockscout.com" ], "alchemy": { - "url": "https://base-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY_BASE}}", + "url": "https://base-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY}}", "active": false }, "opstack": true, - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BASE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedLayer1": 1 }, @@ -203,7 +203,7 @@ "https://blastscan.io" ], "opstack": true, - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BLAST}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "active": true, "linkedLayer1": 1 @@ -224,7 +224,7 @@ "blockExplorerUrls": [ "https://zkevm.polygonscan.com/" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON_ZKEVM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedLayer1": 1 }, @@ -244,7 +244,7 @@ "https://lineascan.build", "https://explorer.linea.build" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_LINEA}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "linkedLayer1": 1, "active": true, "create": true @@ -285,7 +285,7 @@ ], "linkedLayer1": 1, "active": true, - "etherscanApiKey": "{{ETHERSCAN_API_KEY_TAIKO}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "covalent": { "active": true }, @@ -315,7 +315,7 @@ "chainName": "polygon", "rpcUrls": [ "https://rpc.ankr.com/polygon/{{ANKR_API_KEY}}", - "https://polygon-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY_POLYGON}}", + "https://polygon-mainnet.g.alchemy.com/v2/{{ALCHEMY_API_KEY}}", "https://polygon-mainnet.infura.io/v3/{{INFURA_API_KEY}}", "https://polygon-rpc.com/" ], @@ -328,14 +328,14 @@ "https://polygonscan.com", "https://polygon-explorer-mainnet.chainstacklabs.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "subgraph": { "url": "https://api.thegraph.com/subgraphs/name/tranchien2002/eip721-matic", "startBlock": 16875648, "active": false }, "alchemy": { - "url": "https://polygon-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY_POLYGON}}", + "url": "https://polygon-mainnet.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY}}", "active": true }, "openSea": "https://opensea.io/assets/matic", @@ -360,7 +360,7 @@ "https://gnosisscan.io/", "https://blockscout.com/xdai/mainnet" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_GNOSIS}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true }, { @@ -380,7 +380,7 @@ "https://snowtrace.io", "https://cchain.explorer.avax.network" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_AVALANCHE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true }, { @@ -419,7 +419,7 @@ "blockExplorerUrls": [ "https://ftmscan.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_FANTOM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true }, { @@ -441,7 +441,7 @@ "blockExplorerUrls": [ "https://bscscan.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BINANCE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true }, { diff --git a/config/src/testnets.handlebars.json b/config/src/testnets.handlebars.json index 33d90d30c..971e5270e 100644 --- a/config/src/testnets.handlebars.json +++ b/config/src/testnets.handlebars.json @@ -61,7 +61,7 @@ "https://sepolia.basescan.org", "https://base-sepolia.blockscout.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BASE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "opstack": true, "create": true, "linkedMainnet": 8453, @@ -145,7 +145,7 @@ "active": false }, "alchemy": { - "url": "https://eth-goerli.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY_GOERLI}}", + "url": "https://eth-goerli.g.alchemy.com/nft/v2/{{ALCHEMY_API_KEY}}", "active": false }, "eip1559": true, @@ -169,7 +169,7 @@ "https://base-goerli.blockscout.com" ], "opstack": true, - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BASE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 8453, "linkedLayer1": 5, @@ -231,7 +231,7 @@ "blockExplorerUrls": [ "https://testnet-zkevm.polygonscan.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON_ZKEVM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "linkedMainnet": 1101, "linkedLayer1": 11155111, "create": true @@ -251,7 +251,7 @@ "https://testnet-zkevm.polygonscan.com", "https://explorer.public.zkevm-test.net" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON_ZKEVM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "active": false, "linkedMainnet": 1101, "linkedLayer1": 5, @@ -349,7 +349,7 @@ "blockExplorerUrls": [ "https://amoy.polygonscan.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 137 }, @@ -396,7 +396,7 @@ "active": true }, "active": false, - "etherscanApiKey": "{{ETHERSCAN_API_KEY_POLYGON}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 137 }, @@ -437,7 +437,7 @@ "https://testnet.snowtrace.io", "https://cchain.explorer.avax-test.network" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_AVALANCHE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 43114 }, @@ -475,7 +475,7 @@ "blockExplorerUrls": [ "https://testnet.ftmscan.com" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_FANTOM}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 250 }, @@ -495,7 +495,7 @@ "blockExplorerUrls": [ "https://testnet.bscscan.com/" ], - "etherscanApiKey": "{{ETHERSCAN_API_KEY_BINANCE}}", + "etherscanApiKey": "{{ETHERSCAN_API_KEY}}", "create": true, "linkedMainnet": 56, "nftsFactoryV3": "" diff --git a/config/turbo.json b/config/turbo.json index 4f77de8e6..a05e24836 100644 --- a/config/turbo.json +++ b/config/turbo.json @@ -14,26 +14,9 @@ ], "env": [ "ALCHEMY_API_KEY", - "ALCHEMY_API_KEY_ARBITRUM", - "ALCHEMY_API_KEY_BASE", - "ALCHEMY_API_KEY_OPTIMISM", - "ALCHEMY_API_KEY_POLYGON", "ANKR_API_KEY", "COVALENT_API_KEY", "ETHERSCAN_API_KEY", - "ETHERSCAN_API_KEY_ARBITRUM", - "ETHERSCAN_API_KEY_AVALANCHE", - "ETHERSCAN_API_KEY_BASE", - "ETHERSCAN_API_KEY_BINANCE", - "ETHERSCAN_API_KEY_BLAST", - "ETHERSCAN_API_KEY_FANTOM", - "ETHERSCAN_API_KEY_GNOSIS", - "ETHERSCAN_API_KEY_LINEA", - "ETHERSCAN_API_KEY_OPTIMISM", - "ETHERSCAN_API_KEY_POLYGON", - "ETHERSCAN_API_KEY_POLYGON_ZKEVM", - "ETHERSCAN_API_KEY_SCROLL", - "ETHERSCAN_API_KEY_TAIKO", "INFURA_API_KEY", "NFT_STORAGE_KEY", "PINATA_API_KEY", diff --git a/contracts/foundry.toml b/contracts/foundry.toml index aa33c614c..a6b297874 100644 --- a/contracts/foundry.toml +++ b/contracts/foundry.toml @@ -21,7 +21,7 @@ polygon = "https://polygon-mainnet.infura.io/v3/${INFURA_API_KEY}" optimism = "https://optimism-mainnet.infura.io/v3/${INFURA_API_KEY}" arbitrum = "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}" avalanche = "https://avalanche-mainnet.infura.io/v3/${INFURA_API_KEY}" -base = "https://base-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY_BASE}" +base = "https://base-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}" polygon-zkevm = "https://zkevm-rpc.com" gnosis = "https://rpc.ankr.com/gnosis" fantom = "https://rpc.ankr.com/fantom" @@ -74,22 +74,10 @@ fraxtal-testnet = "https://rpc.testnet.frax.com" anvil = "http://127.0.0.1:8545" [etherscan] -gnosis = { key = "${ETHERSCAN_API_KEY_GNOSIS}" } -base = { key = "${ETHERSCAN_API_KEY_BASE}" } -polygon-zkevm = { key = "${ETHERSCAN_API_KEY_POLYGON_ZKEVM}" } -linea = { key = "${ETHERSCAN_API_KEY_LINEA}" } -# TESTNETS -goerli = { key = "${ETHERSCAN_API_KEY}" } -sepolia = { key = "${ETHERSCAN_API_KEY}" } holesky = { key = "${ETHERSCAN_API_KEY}", url = "https://api-holesky.etherscan.io/api" } calypso-testnet = { key = "non-applicable", url = "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com" } -linea-testnet = { key = "${ETHERSCAN_API_KEY_LINEA}" } -base-sepolia = { key = "${ETHERSCAN_API_KEY_BASE}" } -chiado = { key = "${ETHERSCAN_API_KEY_GNOSIS}" } -polygon-zkevm-testnet = { key = "${ETHERSCAN_API_KEY_POLYGON_ZKEVM}" } - # diff --git a/contracts/http/transactions.http b/contracts/http/transactions.http index 2af6048d9..db88f35ae 100644 --- a/contracts/http/transactions.http +++ b/contracts/http/transactions.http @@ -1,5 +1,5 @@ @eth = https://api.etherscan.io/api?module=account&action=txlist&sort=asc&apikey={{$processEnv ETHERSCAN_API_KEY}} -@op = https://api-optimistic.etherscan.io/api?module=account&action=txlist&sort=asc&apikey={{$processEnv ETHERSCAN_API_KEY_OPTIMISM}} +@op = https://api-optimistic.etherscan.io/api?module=account&action=txlist&sort=asc&apikey={{$processEnv ETHERSCAN_API_KEY}} @address = 0x981ab0D817710d8FFFC5693383C00D985A3BDa38 diff --git a/example.env b/example.env index 04dd1a676..7bff02190 100644 --- a/example.env +++ b/example.env @@ -6,14 +6,4 @@ export NFT_STORAGE_KEY="" # OPTIONAL export ETHERSCAN_API_KEY="" export ALCHEMY_API_KEY="" -export ALCHEMY_API_KEY_ARBITRUM="" -export ALCHEMY_API_KEY_OPTIMISM="" -export ALCHEMY_API_KEY_POLYGON="" -export ALCHEMY_API_KEY_BASE="" -export ETHERSCAN_API_KEY_ARBITRUM="" -export ETHERSCAN_API_KEY_OPTIMISM="" -export ETHERSCAN_API_KEY_POLYGON="" -export ETHERSCAN_API_KEY_AVALANCHE="" -export ETHERSCAN_API_KEY_FANTOM="" -export ETHERSCAN_API_KEY_BINANCE="" diff --git a/tests/src/app.html b/tests/src/app.html index 77a5ff52c..c1524fbff 100644 --- a/tests/src/app.html +++ b/tests/src/app.html @@ -2,7 +2,7 @@ - + %sveltekit.head% From be27b9bbe11fb343bd5fe4a9cfa6f7a732eb173f Mon Sep 17 00:00:00 2001 From: "zapaz.eth" Date: Sat, 26 Oct 2024 10:08:30 +0200 Subject: [PATCH 3/3] version 1.6.9 --- config/src/config.handlebars.json | 4 ++-- wordpress/readme.handlebars.txt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/src/config.handlebars.json b/config/src/config.handlebars.json index 114c32062..e7794422c 100644 --- a/config/src/config.handlebars.json +++ b/config/src/config.handlebars.json @@ -1,7 +1,7 @@ { "version": { - "latest": "1.6.8", - "stable": "1.6.6", + "latest": "1.6.9", + "stable": "1.6.9", "branch": "{{GIT_BRANCH}}", "commit": "{{GIT_COMMIT}}" }, diff --git a/wordpress/readme.handlebars.txt b/wordpress/readme.handlebars.txt index 1f69c3f62..7c77e51b2 100644 --- a/wordpress/readme.handlebars.txt +++ b/wordpress/readme.handlebars.txt @@ -71,8 +71,9 @@ You can even add your NFTs in any websites you want by using Kredeum "Buy snippe == Changelog == -=1.6.8 +=1.6.9 * Fix IPFS upload (use Pinata instead of NftStorage) +* Update RCP API keys = 1.6.6 (latest & stable) = * New features :