Skip to content

Commit

Permalink
v1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Groxan committed May 31, 2024
1 parent c07d3ef commit ae997e3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The indexer fetches raw data from the Tezos blockchain, processes it, and saves
First of all, install `git`, `make`, `docker`, `docker-compose`, then run the following commands:

````sh
git clone https://github.com/baking-bad/tzkt.git
git clone https://github.com/baking-bad/tzkt
cd tzkt/

make init # Restores DB from the latest snapshot. Skip it, if you want to index from scratch.
Expand Down Expand Up @@ -87,7 +87,7 @@ postgres=# \q
#### Download fresh snapshot (example for mainnet)

````
wget "https://snapshots.tzkt.io/tzkt_v1.13_mainnet.backup" -O /tmp/tzkt_db.backup
wget "https://snapshots.tzkt.io/tzkt_v1.14_mainnet.backup" -O /tmp/tzkt_db.backup
````

#### Restore database from the snapshot
Expand Down Expand Up @@ -266,11 +266,11 @@ That's it. If you want to run the API as a daemon, take a look at this guide: ht

In general the steps are the same as for the mainnet, you will just need to use a different RPC endpoint and DB snapshot. Here are presets for the current testnets:
- Ghostnet:
- Snapshot: https://snapshots.tzkt.io/tzkt_v1.13_ghostnet.backup
- Snapshot: https://snapshots.tzkt.io/tzkt_v1.14_ghostnet.backup
- RPC node: https://rpc.tzkt.io/ghostnet/
- Oxfordnet:
- Snapshot: https://snapshots.tzkt.io/tzkt_v1.13_oxfordnet.backup
- RPC node: https://rpc.tzkt.io/oxfordnet/
- Parisnet:
- Snapshot: https://snapshots.tzkt.io/tzkt_v1.14_parisnet.backup
- RPC node: https://rpc.tzkt.io/parisnet/

### Testnets & docker

Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api.Tests/Tzkt.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<LangVersion>10</LangVersion>
<AssemblyVersion>1.13.4</AssemblyVersion>
<AssemblyVersion>1.14.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Swagger/Swagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public static class Swagger
{
const string Version = "1.13.4";
const string Version = "1.14.0";
const string Path = "/v1/swagger.json";

public static void AddOpenApiDocument(this IServiceCollection services)
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Tzkt.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<AssemblyVersion>1.13.4</AssemblyVersion>
<AssemblyVersion>1.14.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Data/Tzkt.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyVersion>1.13.4</AssemblyVersion>
<AssemblyVersion>1.14.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Sync.Tests/Tzkt.Sync.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>1.13.4</AssemblyVersion>
<AssemblyVersion>1.14.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Sync/Tzkt.Sync.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<AssemblyVersion>1.13.4</AssemblyVersion>
<AssemblyVersion>1.14.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit ae997e3

Please sign in to comment.