diff --git a/.env.IntegrationTest b/.env.IntegrationTest
index 062d3ea2a1..87093091fa 100644
--- a/.env.IntegrationTest
+++ b/.env.IntegrationTest
@@ -4,7 +4,7 @@ NETWORK=devkit
PROTOCOL_MAGIC=42
## Postgres image
-PG_VERSION_TAG=REL_14_11
+PG_VERSION_TAG=REL_18_0
## Yaci image
YACI_VERSION=0.10.5
@@ -16,10 +16,10 @@ DB_SECRET=weakpwd#123_d
DB_HOST=db
# Service name in docker-compose or local db
DB_PORT=5432
-DB_SCHEMA=${NETWORK}
+DB_SCHEMA=public
DB_PATH=data
-UPDATE_GENESIS_BLOCK_QUERY="UPDATE devkit.block SET number = 0 WHERE number = -1; UPDATE devkit.block SET prev_hash = 'Genesis' WHERE number = 1"
-#UPDATE_GENESIS_BLOCK_QUERY="UPDATE devkit.block SET prev_hash = 'Genesis' WHERE number = 1"
+UPDATE_GENESIS_BLOCK_QUERY="UPDATE \"public\".block SET number = 0 WHERE number = -1; UPDATE \"public\".block SET prev_hash = 'Genesis' WHERE number = 1"
+#UPDATE_GENESIS_BLOCK_QUERY="UPDATE \"public\".block SET prev_hash = 'Genesis' WHERE number = 1"
## Cardano Node variables
CARDANO_NODE_HOST=yaci-cli
diff --git a/.env.docker-compose b/.env.docker-compose
index ffd61ddd00..0c07616165 100644
--- a/.env.docker-compose
+++ b/.env.docker-compose
@@ -7,7 +7,7 @@ PROTOCOL_MAGIC=764824073
# mainnet 764824073, preprod 1, preview 2, devkit 42
## Postgres image
-PG_VERSION_TAG=REL_14_11
+PG_VERSION_TAG=REL_18_0
## Postgres variables
DB_NAME=rosetta-java
@@ -16,7 +16,7 @@ DB_SECRET=weakpwd#123_d
DB_HOST=db
# Service name in docker-compose or local db
DB_PORT=5432
-DB_SCHEMA=${NETWORK}
+DB_SCHEMA=public
DB_PATH=data
## Cardano Node variables
diff --git a/.env.docker-compose-preprod b/.env.docker-compose-preprod
index 382625b06e..3fc74c1c54 100644
--- a/.env.docker-compose-preprod
+++ b/.env.docker-compose-preprod
@@ -7,7 +7,7 @@ PROTOCOL_MAGIC=1
# mainnet 764824073, preprod 1, preview 2, devkit 42
## Postgres image
-PG_VERSION_TAG=REL_14_11
+PG_VERSION_TAG=REL_18_0
## Postgres variables
DB_NAME=rosetta-java
@@ -16,7 +16,7 @@ DB_SECRET=weakpwd#123_d
DB_HOST=db
# Service name in docker-compose or local db
DB_PORT=5432
-DB_SCHEMA=${NETWORK}
+DB_SCHEMA=public
DB_PATH=/opt/rosetta-java-preprod/sql_data
## Cardano Node variables
diff --git a/.env.h2 b/.env.h2
index a76ecb627d..a4c6a73d85 100644
--- a/.env.h2
+++ b/.env.h2
@@ -31,11 +31,11 @@ API_PORT=8082
PRINT_EXCEPTION=true
ROSETTA_VERSION=1.4.13
-TOPOLOGY_FILEPATH=./config/${NETWORK}/topology.json
-GENESIS_SHELLEY_PATH=./config/${NETWORK}/shelley-genesis.json
-GENESIS_BYRON_PATH=./config/${NETWORK}/byron-genesis.json
-GENESIS_ALONZO_PATH=./config/${NETWORK}/alonzo-genesis.json
-GENESIS_CONWAY_PATH=./config/${NETWORK}/conway-genesis.json
+TOPOLOGY_FILEPATH=./config/node/${NETWORK}/topology.json
+GENESIS_SHELLEY_PATH=./config/node/${NETWORK}/shelley-genesis.json
+GENESIS_BYRON_PATH=./config/node/${NETWORK}/byron-genesis.json
+GENESIS_ALONZO_PATH=./config/node/${NETWORK}/alonzo-genesis.json
+GENESIS_CONWAY_PATH=./config/node/${NETWORK}/conway-genesis.json
SEARCH_LIMIT=100
## Yaci Indexer env
diff --git a/.env.h2-testdata b/.env.h2-testdata
index 0175efde21..af1c30e753 100644
--- a/.env.h2-testdata
+++ b/.env.h2-testdata
@@ -31,11 +31,11 @@ API_PORT=8082
PRINT_EXCEPTION=true
ROSETTA_VERSION=1.4.13
-TOPOLOGY_FILEPATH=./config/${NETWORK}/topology.json
-GENESIS_SHELLEY_PATH=./config/${NETWORK}/shelley-genesis.json
-GENESIS_BYRON_PATH=./config/${NETWORK}/byron-genesis.json
-GENESIS_ALONZO_PATH=./config/${NETWORK}/alonzo-genesis.json
-GENESIS_CONWAY_PATH=./config/${NETWORK}/conway-genesis.json
+TOPOLOGY_FILEPATH=./config/node/${NETWORK}/topology.json
+GENESIS_SHELLEY_PATH=./config/node/${NETWORK}/shelley-genesis.json
+GENESIS_BYRON_PATH=./config/node/${NETWORK}/byron-genesis.json
+GENESIS_ALONZO_PATH=./config/node/${NETWORK}/alonzo-genesis.json
+GENESIS_CONWAY_PATH=./config/node/${NETWORK}/conway-genesis.json
SEARCH_LIMIT=100
## Yaci Indexer env
diff --git a/.github/actions/build_docker_images/action.yml b/.github/actions/build_docker_images/action.yml
index 7521f22b30..576a906af9 100644
--- a/.github/actions/build_docker_images/action.yml
+++ b/.github/actions/build_docker_images/action.yml
@@ -133,19 +133,11 @@ runs:
tags: cardanofoundation/cardano-rosetta-java-mithril:${{ steps.envver.outputs.mithril_version }}
push: true
- - name: All-in-one - Build and push Docker image
- uses: docker/build-push-action@v4
- with:
- context: .
- file: ./docker/Dockerfile
- tags: cardanofoundation/cardano-rosetta-java:${{ inputs.tag }}
- push: true
-
- - name: All-in-one - Build and push Docker latest image
+ - name: Mithril - Build and push Docker latest image
uses: docker/build-push-action@v4
if: ${{ inputs.isRelease == 'true' }}
with:
context: .
- file: ./docker/Dockerfile
- tags: cardanofoundation/cardano-rosetta-java:latest
+ file: ./docker/dockerfiles/mithril/Dockerfile
+ tags: cardanofoundation/cardano-rosetta-java-mithril:latest
push: true
\ No newline at end of file
diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml
index a96e5daf2f..982fad7e7e 100644
--- a/.github/workflows/integration-test.yaml
+++ b/.github/workflows/integration-test.yaml
@@ -35,6 +35,7 @@ jobs:
python-version: '3.12'
- name: "Install uv"
run: curl -LsSf https://astral.sh/uv/install.sh | sh
+
# - name: "Install mesh-cli"
# run: curl -sSfL https://raw.githubusercontent.com/coinbase/mesh-cli/master/scripts/install.sh | sh -s
@@ -42,8 +43,9 @@ jobs:
- name: "Install mesh-cli"
run: curl -sSfL https://raw.githubusercontent.com/coinbase/mesh-cli/v0.10.3/scripts/install.sh | sed -e 's/^REPO=.*/REPO=mesh-cli/' | sh -s
- - name: "Run tests"
- run: newman run ./postmanTests/rosetta-java.postman_collection.json -e postmanTests/Rosetta-java-env.postman_environment.json -r cli
+# - name: "Run tests"
+# run: newman run ./postmanTests/rosetta-java.postman_collection.json -e postmanTests/Rosetta-java-env.postman_environment.json -r cli
+
- name: "Run construction API tests with schema validation"
run: |
cd ./tests/integration
@@ -51,7 +53,9 @@ jobs:
-u http://localhost:8082 \
--network-id devkit \
--openapi ../../api/src/main/resources/rosetta-specifications-1.4.15/api.yaml
+
- name: "Run rosetta check:data tests"
run: ./bin/rosetta-cli check:data --configuration-file ./rosetta-cli-tests/data/byron_sample.json
+
- name: "Tear down environment"
run: docker compose --env-file .env.IntegrationTest -f docker-integration-test-environment.yaml down
diff --git a/CLAUDE.md b/CLAUDE.md
index 2fa5698024..2e1b831f3c 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -33,21 +33,25 @@ cd api && mvn spring-boot:run
mvn clean package
```
-### Docker Commands
+### Docker Compose Commands
```bash
-# Build from source
-docker build -t rosetta-java -f ./docker/Dockerfile .
+# Start all services (full stack)
+docker compose --env-file .env.docker-compose --env-file .env.docker-compose-profile-mid-level up -d
-# Run with docker-compose (full stack)
-docker-compose up -d
-
-# Run specific services
-docker-compose up -d api indexer postgres
+# Start specific services
+docker compose up -d cardano-node db
+docker compose up -d api yaci-indexer
# View logs
-docker logs rosetta -f
-docker exec rosetta tail -f /logs/node.log
-docker exec rosetta tail -f /logs/indexer.log
+docker compose logs -f api
+docker compose logs -f yaci-indexer
+docker compose logs -f cardano-node
+
+# Stop all services
+docker compose down
+
+# Restart a service
+docker compose restart api
```
## Architecture Overview
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Preprod.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Public.java
similarity index 78%
rename from api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Preprod.java
rename to api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Public.java
index 6d930b82f4..6de17b933d 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Preprod.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Public.java
@@ -39,134 +39,134 @@
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
-public class Preprod extends SchemaImpl {
+public class Public extends SchemaImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod
+ * The reference instance of public
*/
- public static final Preprod PREPROD = new Preprod();
+ public static final Public PUBLIC = new Public();
/**
- * The table preprod.address.
+ * The table public.address.
*/
public final Address ADDRESS = Address.ADDRESS;
/**
- * The table preprod.address_utxo.
+ * The table public.address_utxo.
*/
public final AddressUtxo ADDRESS_UTXO = AddressUtxo.ADDRESS_UTXO;
/**
- * The table preprod.block.
+ * The table public.block.
*/
public final Block BLOCK = Block.BLOCK;
/**
- * The table preprod.cost_model.
+ * The table public.cost_model.
*/
public final CostModel COST_MODEL = CostModel.COST_MODEL;
/**
- * The table preprod.cursor_.
+ * The table public.cursor_.
*/
public final Cursor_ CURSOR_ = Cursor_.CURSOR_;
/**
- * The table preprod.delegation.
+ * The table public.delegation.
*/
public final Delegation DELEGATION = Delegation.DELEGATION;
/**
- * The table preprod.epoch_param.
+ * The table public.epoch_param.
*/
public final EpochParam EPOCH_PARAM = EpochParam.EPOCH_PARAM;
/**
- * The table preprod.era.
+ * The table public.era.
*/
public final Era ERA = Era.ERA;
/**
- * The table preprod.error.
+ * The table public.error.
*/
public final Error ERROR = Error.ERROR;
/**
- * The table preprod.error_review.
+ * The table public.error_review.
*/
public final ErrorReview ERROR_REVIEW = ErrorReview.ERROR_REVIEW;
/**
- * The table preprod.flyway_schema_history.
+ * The table public.flyway_schema_history.
*/
public final FlywaySchemaHistory FLYWAY_SCHEMA_HISTORY = FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY;
/**
- * The table preprod.invalid_transaction.
+ * The table public.invalid_transaction.
*/
public final InvalidTransaction INVALID_TRANSACTION = InvalidTransaction.INVALID_TRANSACTION;
/**
- * The table preprod.local_epoch_param.
+ * The table public.local_epoch_param.
*/
public final LocalEpochParam LOCAL_EPOCH_PARAM = LocalEpochParam.LOCAL_EPOCH_PARAM;
/**
- * The table preprod.pool_registration.
+ * The table public.pool_registration.
*/
public final PoolRegistration POOL_REGISTRATION = PoolRegistration.POOL_REGISTRATION;
/**
- * The table preprod.pool_retirement.
+ * The table public.pool_retirement.
*/
public final PoolRetirement POOL_RETIREMENT = PoolRetirement.POOL_RETIREMENT;
/**
- * The table preprod.protocol_params_proposal.
+ * The table public.protocol_params_proposal.
*/
public final ProtocolParamsProposal PROTOCOL_PARAMS_PROPOSAL = ProtocolParamsProposal.PROTOCOL_PARAMS_PROPOSAL;
/**
- * The table preprod.rollback.
+ * The table public.rollback.
*/
public final Rollback ROLLBACK = Rollback.ROLLBACK;
/**
- * The table preprod.stake_registration.
+ * The table public.stake_registration.
*/
public final StakeRegistration STAKE_REGISTRATION = StakeRegistration.STAKE_REGISTRATION;
/**
- * The table preprod.transaction.
+ * The table public.transaction.
*/
public final Transaction TRANSACTION = Transaction.TRANSACTION;
/**
- * The table preprod.transaction_size.
+ * The table public.transaction_size.
*/
public final TransactionSize TRANSACTION_SIZE = TransactionSize.TRANSACTION_SIZE;
/**
- * The table preprod.transaction_witness.
+ * The table public.transaction_witness.
*/
public final TransactionWitness TRANSACTION_WITNESS = TransactionWitness.TRANSACTION_WITNESS;
/**
- * The table preprod.tx_input.
+ * The table public.tx_input.
*/
public final TxInput TX_INPUT = TxInput.TX_INPUT;
/**
- * The table preprod.withdrawal.
+ * The table public.withdrawal.
*/
public final Withdrawal WITHDRAWAL = Withdrawal.WITHDRAWAL;
/**
* No further instances allowed
*/
- private Preprod() {
+ private Public() {
super("preprod", null);
}
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Tables.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Tables.java
index 0991429ea8..06c85d8bc9 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Tables.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/Tables.java
@@ -36,117 +36,117 @@
public class Tables {
/**
- * The table preprod.address.
+ * The table public.address.
*/
public static final Address ADDRESS = Address.ADDRESS;
/**
- * The table preprod.address_utxo.
+ * The table public.address_utxo.
*/
public static final AddressUtxo ADDRESS_UTXO = AddressUtxo.ADDRESS_UTXO;
/**
- * The table preprod.block.
+ * The table public.block.
*/
public static final Block BLOCK = Block.BLOCK;
/**
- * The table preprod.cost_model.
+ * The table public.cost_model.
*/
public static final CostModel COST_MODEL = CostModel.COST_MODEL;
/**
- * The table preprod.cursor_.
+ * The table public.cursor_.
*/
public static final Cursor_ CURSOR_ = Cursor_.CURSOR_;
/**
- * The table preprod.delegation.
+ * The table public.delegation.
*/
public static final Delegation DELEGATION = Delegation.DELEGATION;
/**
- * The table preprod.epoch_param.
+ * The table public.epoch_param.
*/
public static final EpochParam EPOCH_PARAM = EpochParam.EPOCH_PARAM;
/**
- * The table preprod.era.
+ * The table public.era.
*/
public static final Era ERA = Era.ERA;
/**
- * The table preprod.error.
+ * The table public.error.
*/
public static final Error ERROR = Error.ERROR;
/**
- * The table preprod.error_review.
+ * The table public.error_review.
*/
public static final ErrorReview ERROR_REVIEW = ErrorReview.ERROR_REVIEW;
/**
- * The table preprod.flyway_schema_history.
+ * The table public.flyway_schema_history.
*/
public static final FlywaySchemaHistory FLYWAY_SCHEMA_HISTORY = FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY;
/**
- * The table preprod.invalid_transaction.
+ * The table public.invalid_transaction.
*/
public static final InvalidTransaction INVALID_TRANSACTION = InvalidTransaction.INVALID_TRANSACTION;
/**
- * The table preprod.local_epoch_param.
+ * The table public.local_epoch_param.
*/
public static final LocalEpochParam LOCAL_EPOCH_PARAM = LocalEpochParam.LOCAL_EPOCH_PARAM;
/**
- * The table preprod.pool_registration.
+ * The table public.pool_registration.
*/
public static final PoolRegistration POOL_REGISTRATION = PoolRegistration.POOL_REGISTRATION;
/**
- * The table preprod.pool_retirement.
+ * The table public.pool_retirement.
*/
public static final PoolRetirement POOL_RETIREMENT = PoolRetirement.POOL_RETIREMENT;
/**
- * The table preprod.protocol_params_proposal.
+ * The table public.protocol_params_proposal.
*/
public static final ProtocolParamsProposal PROTOCOL_PARAMS_PROPOSAL = ProtocolParamsProposal.PROTOCOL_PARAMS_PROPOSAL;
/**
- * The table preprod.rollback.
+ * The table public.rollback.
*/
public static final Rollback ROLLBACK = Rollback.ROLLBACK;
/**
- * The table preprod.stake_registration.
+ * The table public.stake_registration.
*/
public static final StakeRegistration STAKE_REGISTRATION = StakeRegistration.STAKE_REGISTRATION;
/**
- * The table preprod.transaction.
+ * The table public.transaction.
*/
public static final Transaction TRANSACTION = Transaction.TRANSACTION;
/**
- * The table preprod.transaction_size.
+ * The table public.transaction_size.
*/
public static final TransactionSize TRANSACTION_SIZE = TransactionSize.TRANSACTION_SIZE;
/**
- * The table preprod.transaction_witness.
+ * The table public.transaction_witness.
*/
public static final TransactionWitness TRANSACTION_WITNESS = TransactionWitness.TRANSACTION_WITNESS;
/**
- * The table preprod.tx_input.
+ * The table public.tx_input.
*/
public static final TxInput TX_INPUT = TxInput.TX_INPUT;
/**
- * The table preprod.withdrawal.
+ * The table public.withdrawal.
*/
public static final Withdrawal WITHDRAWAL = Withdrawal.WITHDRAWAL;
}
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Address.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Address.java
index 522715ab88..1c63b7ce96 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Address.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Address.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.AddressRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class Address extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.address
+ * The reference instance of public.address
*/
public static final Address ADDRESS = new Address();
@@ -55,37 +55,37 @@ public Class getRecordType() {
}
/**
- * The column preprod.address.id.
+ * The column public.address.id.
*/
public final TableField ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
- * The column preprod.address.address.
+ * The column public.address.address.
*/
public final TableField ADDRESS_ = createField(DSL.name("address"), SQLDataType.VARCHAR(500).nullable(false), this, "");
/**
- * The column preprod.address.addr_full.
+ * The column public.address.addr_full.
*/
public final TableField ADDR_FULL = createField(DSL.name("addr_full"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.address.payment_credential.
+ * The column public.address.payment_credential.
*/
public final TableField PAYMENT_CREDENTIAL = createField(DSL.name("payment_credential"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.address.stake_address.
+ * The column public.address.stake_address.
*/
public final TableField STAKE_ADDRESS = createField(DSL.name("stake_address"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.address.stake_credential.
+ * The column public.address.stake_credential.
*/
public final TableField STAKE_CREDENTIAL = createField(DSL.name("stake_credential"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.address.update_datetime.
+ * The column public.address.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -98,21 +98,21 @@ private Address(Name alias, Table aliased, Field>[] parameters,
}
/**
- * Create an aliased preprod.address table reference
+ * Create an aliased public.address table reference
*/
public Address(String alias) {
this(DSL.name(alias), ADDRESS);
}
/**
- * Create an aliased preprod.address table reference
+ * Create an aliased public.address table reference
*/
public Address(Name alias) {
this(alias, ADDRESS);
}
/**
- * Create a preprod.address table reference
+ * Create a public.address table reference
*/
public Address() {
this(DSL.name("address"), null);
@@ -120,7 +120,7 @@ public Address() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/AddressUtxo.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/AddressUtxo.java
index f9e7b55ab6..32d8820b0f 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/AddressUtxo.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/AddressUtxo.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.AddressUtxoRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class AddressUtxo extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.address_utxo
+ * The reference instance of public.address_utxo
*/
public static final AddressUtxo ADDRESS_UTXO = new AddressUtxo();
@@ -55,102 +55,102 @@ public Class getRecordType() {
}
/**
- * The column preprod.address_utxo.tx_hash.
+ * The column public.address_utxo.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.address_utxo.output_index.
+ * The column public.address_utxo.output_index.
*/
public final TableField OUTPUT_INDEX = createField(DSL.name("output_index"), SQLDataType.SMALLINT.nullable(false), this, "");
/**
- * The column preprod.address_utxo.slot.
+ * The column public.address_utxo.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.address_utxo.block_hash.
+ * The column public.address_utxo.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.address_utxo.epoch.
+ * The column public.address_utxo.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.address_utxo.lovelace_amount.
+ * The column public.address_utxo.lovelace_amount.
*/
public final TableField LOVELACE_AMOUNT = createField(DSL.name("lovelace_amount"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.address_utxo.amounts.
+ * The column public.address_utxo.amounts.
*/
public final TableField AMOUNTS = createField(DSL.name("amounts"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.address_utxo.data_hash.
+ * The column public.address_utxo.data_hash.
*/
public final TableField DATA_HASH = createField(DSL.name("data_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.address_utxo.inline_datum.
+ * The column public.address_utxo.inline_datum.
*/
public final TableField INLINE_DATUM = createField(DSL.name("inline_datum"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.address_utxo.owner_addr.
+ * The column public.address_utxo.owner_addr.
*/
public final TableField OWNER_ADDR = createField(DSL.name("owner_addr"), SQLDataType.VARCHAR(500), this, "");
/**
- * The column preprod.address_utxo.owner_addr_full.
+ * The column public.address_utxo.owner_addr_full.
*/
public final TableField OWNER_ADDR_FULL = createField(DSL.name("owner_addr_full"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.address_utxo.owner_stake_addr.
+ * The column public.address_utxo.owner_stake_addr.
*/
public final TableField OWNER_STAKE_ADDR = createField(DSL.name("owner_stake_addr"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.address_utxo.owner_payment_credential.
+ * The column public.address_utxo.owner_payment_credential.
*/
public final TableField OWNER_PAYMENT_CREDENTIAL = createField(DSL.name("owner_payment_credential"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.address_utxo.owner_stake_credential.
+ * The column public.address_utxo.owner_stake_credential.
*/
public final TableField OWNER_STAKE_CREDENTIAL = createField(DSL.name("owner_stake_credential"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.address_utxo.script_ref.
+ * The column public.address_utxo.script_ref.
*/
public final TableField SCRIPT_REF = createField(DSL.name("script_ref"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.address_utxo.reference_script_hash.
+ * The column public.address_utxo.reference_script_hash.
*/
public final TableField REFERENCE_SCRIPT_HASH = createField(DSL.name("reference_script_hash"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.address_utxo.is_collateral_return.
+ * The column public.address_utxo.is_collateral_return.
*/
public final TableField IS_COLLATERAL_RETURN = createField(DSL.name("is_collateral_return"), SQLDataType.BOOLEAN, this, "");
/**
- * The column preprod.address_utxo.block.
+ * The column public.address_utxo.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.address_utxo.block_time.
+ * The column public.address_utxo.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.address_utxo.update_datetime.
+ * The column public.address_utxo.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -163,21 +163,21 @@ private AddressUtxo(Name alias, Table aliased, Field>[] par
}
/**
- * Create an aliased preprod.address_utxo table reference
+ * Create an aliased public.address_utxo table reference
*/
public AddressUtxo(String alias) {
this(DSL.name(alias), ADDRESS_UTXO);
}
/**
- * Create an aliased preprod.address_utxo table reference
+ * Create an aliased public.address_utxo table reference
*/
public AddressUtxo(Name alias) {
this(alias, ADDRESS_UTXO);
}
/**
- * Create a preprod.address_utxo table reference
+ * Create a public.address_utxo table reference
*/
public AddressUtxo() {
this(DSL.name("address_utxo"), null);
@@ -185,7 +185,7 @@ public AddressUtxo() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Block.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Block.java
index 33d446c49c..f0bb988544 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Block.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Block.java
@@ -12,7 +12,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.BlockRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -43,7 +43,7 @@ public class Block extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.block
+ * The reference instance of public.block
*/
public static final Block BLOCK = new Block();
@@ -56,132 +56,132 @@ public Class getRecordType() {
}
/**
- * The column preprod.block.hash.
+ * The column public.block.hash.
*/
public final TableField HASH = createField(DSL.name("hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.block.number.
+ * The column public.block.number.
*/
public final TableField NUMBER = createField(DSL.name("number"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.body_hash.
+ * The column public.block.body_hash.
*/
public final TableField BODY_HASH = createField(DSL.name("body_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.body_size.
+ * The column public.block.body_size.
*/
public final TableField BODY_SIZE = createField(DSL.name("body_size"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.block.epoch.
+ * The column public.block.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.block.total_output.
+ * The column public.block.total_output.
*/
public final TableField TOTAL_OUTPUT = createField(DSL.name("total_output"), SQLDataType.DECIMAL_INTEGER(38), this, "");
/**
- * The column preprod.block.total_fees.
+ * The column public.block.total_fees.
*/
public final TableField TOTAL_FEES = createField(DSL.name("total_fees"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.block_time.
+ * The column public.block.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.era.
+ * The column public.block.era.
*/
public final TableField ERA = createField(DSL.name("era"), SQLDataType.SMALLINT, this, "");
/**
- * The column preprod.block.issuer_vkey.
+ * The column public.block.issuer_vkey.
*/
public final TableField ISSUER_VKEY = createField(DSL.name("issuer_vkey"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.leader_vrf.
+ * The column public.block.leader_vrf.
*/
public final TableField LEADER_VRF = createField(DSL.name("leader_vrf"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.block.nonce_vrf.
+ * The column public.block.nonce_vrf.
*/
public final TableField NONCE_VRF = createField(DSL.name("nonce_vrf"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.block.prev_hash.
+ * The column public.block.prev_hash.
*/
public final TableField PREV_HASH = createField(DSL.name("prev_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.protocol_version.
+ * The column public.block.protocol_version.
*/
public final TableField PROTOCOL_VERSION = createField(DSL.name("protocol_version"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.slot.
+ * The column public.block.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.vrf_result.
+ * The column public.block.vrf_result.
*/
public final TableField VRF_RESULT = createField(DSL.name("vrf_result"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.block.vrf_vkey.
+ * The column public.block.vrf_vkey.
*/
public final TableField VRF_VKEY = createField(DSL.name("vrf_vkey"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.no_of_txs.
+ * The column public.block.no_of_txs.
*/
public final TableField NO_OF_TXS = createField(DSL.name("no_of_txs"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.block.slot_leader.
+ * The column public.block.slot_leader.
*/
public final TableField SLOT_LEADER = createField(DSL.name("slot_leader"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.block.epoch_slot.
+ * The column public.block.epoch_slot.
*/
public final TableField EPOCH_SLOT = createField(DSL.name("epoch_slot"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.block.op_cert_hot_vkey.
+ * The column public.block.op_cert_hot_vkey.
*/
public final TableField OP_CERT_HOT_VKEY = createField(DSL.name("op_cert_hot_vkey"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.block.op_cert_seq_number.
+ * The column public.block.op_cert_seq_number.
*/
public final TableField OP_CERT_SEQ_NUMBER = createField(DSL.name("op_cert_seq_number"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.op_cert_kes_period.
+ * The column public.block.op_cert_kes_period.
*/
public final TableField OP_CERT_KES_PERIOD = createField(DSL.name("op_cert_kes_period"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.block.op_cert_sigma.
+ * The column public.block.op_cert_sigma.
*/
public final TableField OP_CERT_SIGMA = createField(DSL.name("op_cert_sigma"), SQLDataType.VARCHAR(256), this, "");
/**
- * The column preprod.block.create_datetime.
+ * The column public.block.create_datetime.
*/
public final TableField CREATE_DATETIME = createField(DSL.name("create_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
/**
- * The column preprod.block.update_datetime.
+ * The column public.block.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -194,21 +194,21 @@ private Block(Name alias, Table aliased, Field>[] parameters, Con
}
/**
- * Create an aliased preprod.block table reference
+ * Create an aliased public.block table reference
*/
public Block(String alias) {
this(DSL.name(alias), BLOCK);
}
/**
- * Create an aliased preprod.block table reference
+ * Create an aliased public.block table reference
*/
public Block(Name alias) {
this(alias, BLOCK);
}
/**
- * Create a preprod.block table reference
+ * Create a public.block table reference
*/
public Block() {
this(DSL.name("block"), null);
@@ -216,7 +216,7 @@ public Block() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/CostModel.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/CostModel.java
index 8accd14946..ffc535fcd4 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/CostModel.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/CostModel.java
@@ -8,7 +8,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.CostModelRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -38,7 +38,7 @@ public class CostModel extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.cost_model
+ * The reference instance of public.cost_model
*/
public static final CostModel COST_MODEL = new CostModel();
@@ -51,32 +51,32 @@ public Class getRecordType() {
}
/**
- * The column preprod.cost_model.hash.
+ * The column public.cost_model.hash.
*/
public final TableField HASH = createField(DSL.name("hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.cost_model.costs.
+ * The column public.cost_model.costs.
*/
public final TableField COSTS = createField(DSL.name("costs"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.cost_model.slot.
+ * The column public.cost_model.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.cost_model.block.
+ * The column public.cost_model.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.cost_model.block_time.
+ * The column public.cost_model.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.cost_model.update_datetime.
+ * The column public.cost_model.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -89,21 +89,21 @@ private CostModel(Name alias, Table aliased, Field>[] paramet
}
/**
- * Create an aliased preprod.cost_model table reference
+ * Create an aliased public.cost_model table reference
*/
public CostModel(String alias) {
this(DSL.name(alias), COST_MODEL);
}
/**
- * Create an aliased preprod.cost_model table reference
+ * Create an aliased public.cost_model table reference
*/
public CostModel(Name alias) {
this(alias, COST_MODEL);
}
/**
- * Create a preprod.cost_model table reference
+ * Create a public.cost_model table reference
*/
public CostModel() {
this(DSL.name("cost_model"), null);
@@ -111,7 +111,7 @@ public CostModel() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Cursor_.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Cursor_.java
index 53912107e5..59f7d72a0a 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Cursor_.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Cursor_.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.Cursor_Record;
import org.jooq.Condition;
import org.jooq.Field;
@@ -41,7 +41,7 @@ public class Cursor_ extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.cursor_
+ * The reference instance of public.cursor_
*/
public static final Cursor_ CURSOR_ = new Cursor_();
@@ -54,42 +54,42 @@ public Class getRecordType() {
}
/**
- * The column preprod.cursor_.id.
+ * The column public.cursor_.id.
*/
public final TableField ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.cursor_.block_hash.
+ * The column public.cursor_.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.cursor_.slot.
+ * The column public.cursor_.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.cursor_.block_number.
+ * The column public.cursor_.block_number.
*/
public final TableField BLOCK_NUMBER = createField(DSL.name("block_number"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.cursor_.era.
+ * The column public.cursor_.era.
*/
public final TableField ERA = createField(DSL.name("era"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.cursor_.prev_block_hash.
+ * The column public.cursor_.prev_block_hash.
*/
public final TableField PREV_BLOCK_HASH = createField(DSL.name("prev_block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.cursor_.create_datetime.
+ * The column public.cursor_.create_datetime.
*/
public final TableField CREATE_DATETIME = createField(DSL.name("create_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
/**
- * The column preprod.cursor_.update_datetime.
+ * The column public.cursor_.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -102,21 +102,21 @@ private Cursor_(Name alias, Table aliased, Field>[] parameters,
}
/**
- * Create an aliased preprod.cursor_ table reference
+ * Create an aliased public.cursor_ table reference
*/
public Cursor_(String alias) {
this(DSL.name(alias), CURSOR_);
}
/**
- * Create an aliased preprod.cursor_ table reference
+ * Create an aliased public.cursor_ table reference
*/
public Cursor_(Name alias) {
this(alias, CURSOR_);
}
/**
- * Create a preprod.cursor_ table reference
+ * Create a public.cursor_ table reference
*/
public Cursor_() {
this(DSL.name("cursor_"), null);
@@ -124,7 +124,7 @@ public Cursor_() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Delegation.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Delegation.java
index 62067ecafb..a06adfc8a2 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Delegation.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Delegation.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.DelegationRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -41,7 +41,7 @@ public class Delegation extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.delegation
+ * The reference instance of public.delegation
*/
public static final Delegation DELEGATION = new Delegation();
@@ -54,57 +54,57 @@ public Class getRecordType() {
}
/**
- * The column preprod.delegation.tx_hash.
+ * The column public.delegation.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.delegation.cert_index.
+ * The column public.delegation.cert_index.
*/
public final TableField CERT_INDEX = createField(DSL.name("cert_index"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.delegation.credential.
+ * The column public.delegation.credential.
*/
public final TableField CREDENTIAL = createField(DSL.name("credential"), SQLDataType.VARCHAR(56).nullable(false), this, "");
/**
- * The column preprod.delegation.pool_id.
+ * The column public.delegation.pool_id.
*/
public final TableField POOL_ID = createField(DSL.name("pool_id"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.delegation.address.
+ * The column public.delegation.address.
*/
public final TableField ADDRESS = createField(DSL.name("address"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.delegation.epoch.
+ * The column public.delegation.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.delegation.slot.
+ * The column public.delegation.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.delegation.block_hash.
+ * The column public.delegation.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.delegation.block.
+ * The column public.delegation.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.delegation.block_time.
+ * The column public.delegation.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.delegation.update_datetime.
+ * The column public.delegation.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -117,21 +117,21 @@ private Delegation(Name alias, Table aliased, Field>[] param
}
/**
- * Create an aliased preprod.delegation table reference
+ * Create an aliased public.delegation table reference
*/
public Delegation(String alias) {
this(DSL.name(alias), DELEGATION);
}
/**
- * Create an aliased preprod.delegation table reference
+ * Create an aliased public.delegation table reference
*/
public Delegation(Name alias) {
this(alias, DELEGATION);
}
/**
- * Create a preprod.delegation table reference
+ * Create a public.delegation table reference
*/
public Delegation() {
this(DSL.name("delegation"), null);
@@ -139,7 +139,7 @@ public Delegation() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/EpochParam.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/EpochParam.java
index 3efa7c1525..21a9e33b47 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/EpochParam.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/EpochParam.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.EpochParamRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class EpochParam extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.epoch_param
+ * The reference instance of public.epoch_param
*/
public static final EpochParam EPOCH_PARAM = new EpochParam();
@@ -55,37 +55,37 @@ public Class getRecordType() {
}
/**
- * The column preprod.epoch_param.epoch.
+ * The column public.epoch_param.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.epoch_param.params.
+ * The column public.epoch_param.params.
*/
public final TableField PARAMS = createField(DSL.name("params"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.epoch_param.cost_model_hash.
+ * The column public.epoch_param.cost_model_hash.
*/
public final TableField COST_MODEL_HASH = createField(DSL.name("cost_model_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.epoch_param.slot.
+ * The column public.epoch_param.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.epoch_param.block.
+ * The column public.epoch_param.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.epoch_param.block_time.
+ * The column public.epoch_param.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.epoch_param.update_datetime.
+ * The column public.epoch_param.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -98,21 +98,21 @@ private EpochParam(Name alias, Table aliased, Field>[] param
}
/**
- * Create an aliased preprod.epoch_param table reference
+ * Create an aliased public.epoch_param table reference
*/
public EpochParam(String alias) {
this(DSL.name(alias), EPOCH_PARAM);
}
/**
- * Create an aliased preprod.epoch_param table reference
+ * Create an aliased public.epoch_param table reference
*/
public EpochParam(Name alias) {
this(alias, EPOCH_PARAM);
}
/**
- * Create a preprod.epoch_param table reference
+ * Create a public.epoch_param table reference
*/
public EpochParam() {
this(DSL.name("epoch_param"), null);
@@ -120,7 +120,7 @@ public EpochParam() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Era.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Era.java
index 534b136304..9909776a4a 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Era.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Era.java
@@ -7,7 +7,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.EraRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -36,7 +36,7 @@ public class Era extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.era
+ * The reference instance of public.era
*/
public static final Era ERA = new Era();
@@ -49,22 +49,22 @@ public Class getRecordType() {
}
/**
- * The column preprod.era.era.
+ * The column public.era.era.
*/
public final TableField ERA_ = createField(DSL.name("era"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.era.start_slot.
+ * The column public.era.start_slot.
*/
public final TableField START_SLOT = createField(DSL.name("start_slot"), SQLDataType.BIGINT.nullable(false), this, "");
/**
- * The column preprod.era.block.
+ * The column public.era.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT.nullable(false), this, "");
/**
- * The column preprod.era.block_hash.
+ * The column public.era.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
@@ -77,21 +77,21 @@ private Era(Name alias, Table aliased, Field>[] parameters, Conditi
}
/**
- * Create an aliased preprod.era table reference
+ * Create an aliased public.era table reference
*/
public Era(String alias) {
this(DSL.name(alias), ERA);
}
/**
- * Create an aliased preprod.era table reference
+ * Create an aliased public.era table reference
*/
public Era(Name alias) {
this(alias, ERA);
}
/**
- * Create a preprod.era table reference
+ * Create a public.era table reference
*/
public Era() {
this(DSL.name("era"), null);
@@ -99,7 +99,7 @@ public Era() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Error.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Error.java
index ca4d4307a7..09101d6857 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Error.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Error.java
@@ -8,7 +8,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.ErrorRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -38,7 +38,7 @@ public class Error extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.error
+ * The reference instance of public.error
*/
public static final Error ERROR = new Error();
@@ -51,32 +51,32 @@ public Class getRecordType() {
}
/**
- * The column preprod.error.id.
+ * The column public.error.id.
*/
public final TableField ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
/**
- * The column preprod.error.block.
+ * The column public.error.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.error.error_code.
+ * The column public.error.error_code.
*/
public final TableField ERROR_CODE = createField(DSL.name("error_code"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.error.reason.
+ * The column public.error.reason.
*/
public final TableField REASON = createField(DSL.name("reason"), SQLDataType.CLOB.nullable(false), this, "");
/**
- * The column preprod.error.details.
+ * The column public.error.details.
*/
public final TableField DETAILS = createField(DSL.name("details"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.error.update_datetime.
+ * The column public.error.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -89,21 +89,21 @@ private Error(Name alias, Table aliased, Field>[] parameters, Con
}
/**
- * Create an aliased preprod.error table reference
+ * Create an aliased public.error table reference
*/
public Error(String alias) {
this(DSL.name(alias), ERROR);
}
/**
- * Create an aliased preprod.error table reference
+ * Create an aliased public.error table reference
*/
public Error(Name alias) {
this(alias, ERROR);
}
/**
- * Create a preprod.error table reference
+ * Create a public.error table reference
*/
public Error() {
this(DSL.name("error"), null);
@@ -111,7 +111,7 @@ public Error() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ErrorReview.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ErrorReview.java
index 5728ec4235..f9514ff4ef 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ErrorReview.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ErrorReview.java
@@ -8,7 +8,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.ErrorReviewRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -37,7 +37,7 @@ public class ErrorReview extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.error_review
+ * The reference instance of public.error_review
*/
public static final ErrorReview ERROR_REVIEW = new ErrorReview();
@@ -50,27 +50,27 @@ public Class getRecordType() {
}
/**
- * The column preprod.error_review.id.
+ * The column public.error_review.id.
*/
public final TableField ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.error_review.status.
+ * The column public.error_review.status.
*/
public final TableField STATUS = createField(DSL.name("status"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
- * The column preprod.error_review.comment.
+ * The column public.error_review.comment.
*/
public final TableField COMMENT = createField(DSL.name("comment"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.error_review.checked_by.
+ * The column public.error_review.checked_by.
*/
public final TableField CHECKED_BY = createField(DSL.name("checked_by"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.error_review.last_updated.
+ * The column public.error_review.last_updated.
*/
public final TableField LAST_UPDATED = createField(DSL.name("last_updated"), SQLDataType.LOCALDATETIME(6).nullable(false).defaultValue(DSL.field(DSL.raw("CURRENT_TIMESTAMP"), SQLDataType.LOCALDATETIME)), this, "");
@@ -83,21 +83,21 @@ private ErrorReview(Name alias, Table aliased, Field>[] par
}
/**
- * Create an aliased preprod.error_review table reference
+ * Create an aliased public.error_review table reference
*/
public ErrorReview(String alias) {
this(DSL.name(alias), ERROR_REVIEW);
}
/**
- * Create an aliased preprod.error_review table reference
+ * Create an aliased public.error_review table reference
*/
public ErrorReview(Name alias) {
this(alias, ERROR_REVIEW);
}
/**
- * Create a preprod.error_review table reference
+ * Create a public.error_review table reference
*/
public ErrorReview() {
this(DSL.name("error_review"), null);
@@ -105,7 +105,7 @@ public ErrorReview() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/FlywaySchemaHistory.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/FlywaySchemaHistory.java
index f2f2cc0849..65a62eecac 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/FlywaySchemaHistory.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/FlywaySchemaHistory.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.FlywaySchemaHistoryRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -41,7 +41,7 @@ public class FlywaySchemaHistory extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.flyway_schema_history
+ * The reference instance of public.flyway_schema_history
*/
public static final FlywaySchemaHistory FLYWAY_SCHEMA_HISTORY = new FlywaySchemaHistory();
@@ -54,52 +54,52 @@ public Class getRecordType() {
}
/**
- * The column preprod.flyway_schema_history.installed_rank.
+ * The column public.flyway_schema_history.installed_rank.
*/
public final TableField INSTALLED_RANK = createField(DSL.name("installed_rank"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.version.
+ * The column public.flyway_schema_history.version.
*/
public final TableField VERSION = createField(DSL.name("version"), SQLDataType.VARCHAR(50), this, "");
/**
- * The column preprod.flyway_schema_history.description.
+ * The column public.flyway_schema_history.description.
*/
public final TableField DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(200).nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.type.
+ * The column public.flyway_schema_history.type.
*/
public final TableField TYPE = createField(DSL.name("type"), SQLDataType.VARCHAR(20).nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.script.
+ * The column public.flyway_schema_history.script.
*/
public final TableField SCRIPT = createField(DSL.name("script"), SQLDataType.VARCHAR(1000).nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.checksum.
+ * The column public.flyway_schema_history.checksum.
*/
public final TableField CHECKSUM = createField(DSL.name("checksum"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.flyway_schema_history.installed_by.
+ * The column public.flyway_schema_history.installed_by.
*/
public final TableField INSTALLED_BY = createField(DSL.name("installed_by"), SQLDataType.VARCHAR(100).nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.installed_on.
+ * The column public.flyway_schema_history.installed_on.
*/
public final TableField INSTALLED_ON = createField(DSL.name("installed_on"), SQLDataType.LOCALDATETIME(6).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.LOCALDATETIME)), this, "");
/**
- * The column preprod.flyway_schema_history.execution_time.
+ * The column public.flyway_schema_history.execution_time.
*/
public final TableField EXECUTION_TIME = createField(DSL.name("execution_time"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.flyway_schema_history.success.
+ * The column public.flyway_schema_history.success.
*/
public final TableField SUCCESS = createField(DSL.name("success"), SQLDataType.BOOLEAN.nullable(false), this, "");
@@ -112,7 +112,7 @@ private FlywaySchemaHistory(Name alias, Table aliased
}
/**
- * Create an aliased preprod.flyway_schema_history table
+ * Create an aliased public.flyway_schema_history table
* reference
*/
public FlywaySchemaHistory(String alias) {
@@ -120,7 +120,7 @@ public FlywaySchemaHistory(String alias) {
}
/**
- * Create an aliased preprod.flyway_schema_history table
+ * Create an aliased public.flyway_schema_history table
* reference
*/
public FlywaySchemaHistory(Name alias) {
@@ -128,7 +128,7 @@ public FlywaySchemaHistory(Name alias) {
}
/**
- * Create a preprod.flyway_schema_history table reference
+ * Create a public.flyway_schema_history table reference
*/
public FlywaySchemaHistory() {
this(DSL.name("flyway_schema_history"), null);
@@ -136,7 +136,7 @@ public FlywaySchemaHistory() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/InvalidTransaction.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/InvalidTransaction.java
index 13be7e3926..02c5cf81ec 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/InvalidTransaction.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/InvalidTransaction.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.InvalidTransactionRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class InvalidTransaction extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.invalid_transaction
+ * The reference instance of public.invalid_transaction
*/
public static final InvalidTransaction INVALID_TRANSACTION = new InvalidTransaction();
@@ -55,32 +55,32 @@ public Class getRecordType() {
}
/**
- * The column preprod.invalid_transaction.tx_hash.
+ * The column public.invalid_transaction.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.invalid_transaction.slot.
+ * The column public.invalid_transaction.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT.nullable(false), this, "");
/**
- * The column preprod.invalid_transaction.block_hash.
+ * The column public.invalid_transaction.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.invalid_transaction.transaction.
+ * The column public.invalid_transaction.transaction.
*/
public final TableField TRANSACTION = createField(DSL.name("transaction"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.invalid_transaction.create_datetime.
+ * The column public.invalid_transaction.create_datetime.
*/
public final TableField CREATE_DATETIME = createField(DSL.name("create_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
/**
- * The column preprod.invalid_transaction.update_datetime.
+ * The column public.invalid_transaction.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -93,7 +93,7 @@ private InvalidTransaction(Name alias, Table aliased,
}
/**
- * Create an aliased preprod.invalid_transaction table
+ * Create an aliased public.invalid_transaction table
* reference
*/
public InvalidTransaction(String alias) {
@@ -101,7 +101,7 @@ public InvalidTransaction(String alias) {
}
/**
- * Create an aliased preprod.invalid_transaction table
+ * Create an aliased public.invalid_transaction table
* reference
*/
public InvalidTransaction(Name alias) {
@@ -109,7 +109,7 @@ public InvalidTransaction(Name alias) {
}
/**
- * Create a preprod.invalid_transaction table reference
+ * Create a public.invalid_transaction table reference
*/
public InvalidTransaction() {
this(DSL.name("invalid_transaction"), null);
@@ -117,7 +117,7 @@ public InvalidTransaction() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/LocalEpochParam.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/LocalEpochParam.java
index 4a479df869..71ad3ed58a 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/LocalEpochParam.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/LocalEpochParam.java
@@ -8,7 +8,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.LocalEpochParamRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -38,7 +38,7 @@ public class LocalEpochParam extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.local_epoch_param
+ * The reference instance of public.local_epoch_param
*/
public static final LocalEpochParam LOCAL_EPOCH_PARAM = new LocalEpochParam();
@@ -51,17 +51,17 @@ public Class getRecordType() {
}
/**
- * The column preprod.local_epoch_param.epoch.
+ * The column public.local_epoch_param.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.local_epoch_param.params.
+ * The column public.local_epoch_param.params.
*/
public final TableField PARAMS = createField(DSL.name("params"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.local_epoch_param.update_datetime.
+ * The column public.local_epoch_param.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -74,21 +74,21 @@ private LocalEpochParam(Name alias, Table aliased, Field<
}
/**
- * Create an aliased preprod.local_epoch_param table reference
+ * Create an aliased public.local_epoch_param table reference
*/
public LocalEpochParam(String alias) {
this(DSL.name(alias), LOCAL_EPOCH_PARAM);
}
/**
- * Create an aliased preprod.local_epoch_param table reference
+ * Create an aliased public.local_epoch_param table reference
*/
public LocalEpochParam(Name alias) {
this(alias, LOCAL_EPOCH_PARAM);
}
/**
- * Create a preprod.local_epoch_param table reference
+ * Create a public.local_epoch_param table reference
*/
public LocalEpochParam() {
this(DSL.name("local_epoch_param"), null);
@@ -96,7 +96,7 @@ public LocalEpochParam() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRegistration.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRegistration.java
index c174441e93..2dfd4159c7 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRegistration.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRegistration.java
@@ -13,7 +13,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.PoolRegistrationRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -44,7 +44,7 @@ public class PoolRegistration extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.pool_registration
+ * The reference instance of public.pool_registration
*/
public static final PoolRegistration POOL_REGISTRATION = new PoolRegistration();
@@ -57,92 +57,92 @@ public Class getRecordType() {
}
/**
- * The column preprod.pool_registration.tx_hash.
+ * The column public.pool_registration.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.pool_registration.cert_index.
+ * The column public.pool_registration.cert_index.
*/
public final TableField CERT_INDEX = createField(DSL.name("cert_index"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.pool_registration.pool_id.
+ * The column public.pool_registration.pool_id.
*/
public final TableField POOL_ID = createField(DSL.name("pool_id"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.pool_registration.vrf_key.
+ * The column public.pool_registration.vrf_key.
*/
public final TableField VRF_KEY = createField(DSL.name("vrf_key"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.pool_registration.pledge.
+ * The column public.pool_registration.pledge.
*/
public final TableField PLEDGE = createField(DSL.name("pledge"), SQLDataType.DECIMAL_INTEGER(20), this, "");
/**
- * The column preprod.pool_registration.cost.
+ * The column public.pool_registration.cost.
*/
public final TableField COST = createField(DSL.name("cost"), SQLDataType.DECIMAL_INTEGER(20), this, "");
/**
- * The column preprod.pool_registration.margin.
+ * The column public.pool_registration.margin.
*/
public final TableField MARGIN = createField(DSL.name("margin"), SQLDataType.NUMERIC(10, 8), this, "");
/**
- * The column preprod.pool_registration.reward_account.
+ * The column public.pool_registration.reward_account.
*/
public final TableField REWARD_ACCOUNT = createField(DSL.name("reward_account"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.pool_registration.pool_owners.
+ * The column public.pool_registration.pool_owners.
*/
public final TableField POOL_OWNERS = createField(DSL.name("pool_owners"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.pool_registration.relays.
+ * The column public.pool_registration.relays.
*/
public final TableField RELAYS = createField(DSL.name("relays"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.pool_registration.metadata_url.
+ * The column public.pool_registration.metadata_url.
*/
public final TableField METADATA_URL = createField(DSL.name("metadata_url"), SQLDataType.CLOB, this, "");
/**
- * The column preprod.pool_registration.metadata_hash.
+ * The column public.pool_registration.metadata_hash.
*/
public final TableField METADATA_HASH = createField(DSL.name("metadata_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.pool_registration.epoch.
+ * The column public.pool_registration.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.pool_registration.slot.
+ * The column public.pool_registration.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_registration.block_hash.
+ * The column public.pool_registration.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.pool_registration.block.
+ * The column public.pool_registration.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_registration.block_time.
+ * The column public.pool_registration.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_registration.update_datetime.
+ * The column public.pool_registration.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -155,21 +155,21 @@ private PoolRegistration(Name alias, Table aliased, Fiel
}
/**
- * Create an aliased preprod.pool_registration table reference
+ * Create an aliased public.pool_registration table reference
*/
public PoolRegistration(String alias) {
this(DSL.name(alias), POOL_REGISTRATION);
}
/**
- * Create an aliased preprod.pool_registration table reference
+ * Create an aliased public.pool_registration table reference
*/
public PoolRegistration(Name alias) {
this(alias, POOL_REGISTRATION);
}
/**
- * Create a preprod.pool_registration table reference
+ * Create a public.pool_registration table reference
*/
public PoolRegistration() {
this(DSL.name("pool_registration"), null);
@@ -177,7 +177,7 @@ public PoolRegistration() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRetirement.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRetirement.java
index a4ef523eef..973a04df36 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRetirement.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/PoolRetirement.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.PoolRetirementRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -41,7 +41,7 @@ public class PoolRetirement extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.pool_retirement
+ * The reference instance of public.pool_retirement
*/
public static final PoolRetirement POOL_RETIREMENT = new PoolRetirement();
@@ -54,52 +54,52 @@ public Class getRecordType() {
}
/**
- * The column preprod.pool_retirement.tx_hash.
+ * The column public.pool_retirement.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.pool_retirement.cert_index.
+ * The column public.pool_retirement.cert_index.
*/
public final TableField CERT_INDEX = createField(DSL.name("cert_index"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.pool_retirement.pool_id.
+ * The column public.pool_retirement.pool_id.
*/
public final TableField POOL_ID = createField(DSL.name("pool_id"), SQLDataType.VARCHAR(56), this, "");
/**
- * The column preprod.pool_retirement.retirement_epoch.
+ * The column public.pool_retirement.retirement_epoch.
*/
public final TableField RETIREMENT_EPOCH = createField(DSL.name("retirement_epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.pool_retirement.epoch.
+ * The column public.pool_retirement.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.pool_retirement.slot.
+ * The column public.pool_retirement.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_retirement.block_hash.
+ * The column public.pool_retirement.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.pool_retirement.block.
+ * The column public.pool_retirement.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_retirement.block_time.
+ * The column public.pool_retirement.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.pool_retirement.update_datetime.
+ * The column public.pool_retirement.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -112,21 +112,21 @@ private PoolRetirement(Name alias, Table aliased, Field>
}
/**
- * Create an aliased preprod.pool_retirement table reference
+ * Create an aliased public.pool_retirement table reference
*/
public PoolRetirement(String alias) {
this(DSL.name(alias), POOL_RETIREMENT);
}
/**
- * Create an aliased preprod.pool_retirement table reference
+ * Create an aliased public.pool_retirement table reference
*/
public PoolRetirement(Name alias) {
this(alias, POOL_RETIREMENT);
}
/**
- * Create a preprod.pool_retirement table reference
+ * Create a public.pool_retirement table reference
*/
public PoolRetirement() {
this(DSL.name("pool_retirement"), null);
@@ -134,7 +134,7 @@ public PoolRetirement() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ProtocolParamsProposal.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ProtocolParamsProposal.java
index 748e2c533f..fa001a0af5 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ProtocolParamsProposal.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/ProtocolParamsProposal.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.ProtocolParamsProposalRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class ProtocolParamsProposal extends TableImplpreprod.protocol_params_proposal
+ * The reference instance of public.protocol_params_proposal
*/
public static final ProtocolParamsProposal PROTOCOL_PARAMS_PROPOSAL = new ProtocolParamsProposal();
@@ -55,52 +55,52 @@ public Class getRecordType() {
}
/**
- * The column preprod.protocol_params_proposal.tx_hash.
+ * The column public.protocol_params_proposal.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.protocol_params_proposal.key_hash.
+ * The column public.protocol_params_proposal.key_hash.
*/
public final TableField KEY_HASH = createField(DSL.name("key_hash"), SQLDataType.VARCHAR(56).nullable(false), this, "");
/**
- * The column preprod.protocol_params_proposal.params.
+ * The column public.protocol_params_proposal.params.
*/
public final TableField PARAMS = createField(DSL.name("params"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.protocol_params_proposal.target_epoch.
+ * The column public.protocol_params_proposal.target_epoch.
*/
public final TableField TARGET_EPOCH = createField(DSL.name("target_epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.protocol_params_proposal.epoch.
+ * The column public.protocol_params_proposal.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.protocol_params_proposal.slot.
+ * The column public.protocol_params_proposal.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.protocol_params_proposal.era.
+ * The column public.protocol_params_proposal.era.
*/
public final TableField ERA = createField(DSL.name("era"), SQLDataType.SMALLINT, this, "");
/**
- * The column preprod.protocol_params_proposal.block.
+ * The column public.protocol_params_proposal.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.protocol_params_proposal.block_time.
+ * The column public.protocol_params_proposal.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.protocol_params_proposal.update_datetime.
+ * The column public.protocol_params_proposal.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -113,7 +113,7 @@ private ProtocolParamsProposal(Name alias, Table a
}
/**
- * Create an aliased preprod.protocol_params_proposal table
+ * Create an aliased public.protocol_params_proposal table
* reference
*/
public ProtocolParamsProposal(String alias) {
@@ -121,7 +121,7 @@ public ProtocolParamsProposal(String alias) {
}
/**
- * Create an aliased preprod.protocol_params_proposal table
+ * Create an aliased public.protocol_params_proposal table
* reference
*/
public ProtocolParamsProposal(Name alias) {
@@ -129,7 +129,7 @@ public ProtocolParamsProposal(Name alias) {
}
/**
- * Create a preprod.protocol_params_proposal table reference
+ * Create a public.protocol_params_proposal table reference
*/
public ProtocolParamsProposal() {
this(DSL.name("protocol_params_proposal"), null);
@@ -137,7 +137,7 @@ public ProtocolParamsProposal() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Rollback.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Rollback.java
index 2e40fccf06..339baa5d69 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Rollback.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Rollback.java
@@ -8,7 +8,7 @@
import java.util.Collection;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.RollbackRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -38,7 +38,7 @@ public class Rollback extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.rollback
+ * The reference instance of public.rollback
*/
public static final Rollback ROLLBACK = new Rollback();
@@ -51,42 +51,42 @@ public Class getRecordType() {
}
/**
- * The column preprod.rollback.id.
+ * The column public.rollback.id.
*/
public final TableField ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
- * The column preprod.rollback.rollback_to_block_hash.
+ * The column public.rollback.rollback_to_block_hash.
*/
public final TableField ROLLBACK_TO_BLOCK_HASH = createField(DSL.name("rollback_to_block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.rollback.rollback_to_slot.
+ * The column public.rollback.rollback_to_slot.
*/
public final TableField ROLLBACK_TO_SLOT = createField(DSL.name("rollback_to_slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.rollback.current_block_hash.
+ * The column public.rollback.current_block_hash.
*/
public final TableField CURRENT_BLOCK_HASH = createField(DSL.name("current_block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.rollback.current_slot.
+ * The column public.rollback.current_slot.
*/
public final TableField CURRENT_SLOT = createField(DSL.name("current_slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.rollback.current_block.
+ * The column public.rollback.current_block.
*/
public final TableField CURRENT_BLOCK = createField(DSL.name("current_block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.rollback.create_datetime.
+ * The column public.rollback.create_datetime.
*/
public final TableField CREATE_DATETIME = createField(DSL.name("create_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
/**
- * The column preprod.rollback.update_datetime.
+ * The column public.rollback.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -99,21 +99,21 @@ private Rollback(Name alias, Table aliased, Field>[] parameter
}
/**
- * Create an aliased preprod.rollback table reference
+ * Create an aliased public.rollback table reference
*/
public Rollback(String alias) {
this(DSL.name(alias), ROLLBACK);
}
/**
- * Create an aliased preprod.rollback table reference
+ * Create an aliased public.rollback table reference
*/
public Rollback(Name alias) {
this(alias, ROLLBACK);
}
/**
- * Create a preprod.rollback table reference
+ * Create a public.rollback table reference
*/
public Rollback() {
this(DSL.name("rollback"), null);
@@ -121,7 +121,7 @@ public Rollback() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/StakeRegistration.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/StakeRegistration.java
index d4cfdf1ce5..4f10743f60 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/StakeRegistration.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/StakeRegistration.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.StakeRegistrationRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -41,7 +41,7 @@ public class StakeRegistration extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.stake_registration
+ * The reference instance of public.stake_registration
*/
public static final StakeRegistration STAKE_REGISTRATION = new StakeRegistration();
@@ -54,57 +54,57 @@ public Class getRecordType() {
}
/**
- * The column preprod.stake_registration.tx_hash.
+ * The column public.stake_registration.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.stake_registration.cert_index.
+ * The column public.stake_registration.cert_index.
*/
public final TableField CERT_INDEX = createField(DSL.name("cert_index"), SQLDataType.INTEGER.nullable(false), this, "");
/**
- * The column preprod.stake_registration.credential.
+ * The column public.stake_registration.credential.
*/
public final TableField CREDENTIAL = createField(DSL.name("credential"), SQLDataType.VARCHAR(56).nullable(false), this, "");
/**
- * The column preprod.stake_registration.type.
+ * The column public.stake_registration.type.
*/
public final TableField TYPE = createField(DSL.name("type"), SQLDataType.VARCHAR(50), this, "");
/**
- * The column preprod.stake_registration.address.
+ * The column public.stake_registration.address.
*/
public final TableField ADDRESS = createField(DSL.name("address"), SQLDataType.VARCHAR(255), this, "");
/**
- * The column preprod.stake_registration.epoch.
+ * The column public.stake_registration.epoch.
*/
public final TableField EPOCH = createField(DSL.name("epoch"), SQLDataType.INTEGER, this, "");
/**
- * The column preprod.stake_registration.slot.
+ * The column public.stake_registration.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.stake_registration.block_hash.
+ * The column public.stake_registration.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.stake_registration.block.
+ * The column public.stake_registration.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.stake_registration.block_time.
+ * The column public.stake_registration.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.stake_registration.update_datetime.
+ * The column public.stake_registration.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -117,21 +117,21 @@ private StakeRegistration(Name alias, Table aliased, Fi
}
/**
- * Create an aliased preprod.stake_registration table reference
+ * Create an aliased public.stake_registration table reference
*/
public StakeRegistration(String alias) {
this(DSL.name(alias), STAKE_REGISTRATION);
}
/**
- * Create an aliased preprod.stake_registration table reference
+ * Create an aliased public.stake_registration table reference
*/
public StakeRegistration(Name alias) {
this(alias, STAKE_REGISTRATION);
}
/**
- * Create a preprod.stake_registration table reference
+ * Create a public.stake_registration table reference
*/
public StakeRegistration() {
this(DSL.name("stake_registration"), null);
@@ -139,7 +139,7 @@ public StakeRegistration() {
@Override
public Schema getSchema() {
- return aliased() ? null : Preprod.PREPROD;
+ return aliased() ? null : Public.PUBLIC;
}
@Override
diff --git a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Transaction.java b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Transaction.java
index 90dfd9c61a..aa4cc446d3 100644
--- a/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Transaction.java
+++ b/api/src/main/java/org/cardanofoundation/rosetta/api/jooq/tables/Transaction.java
@@ -11,7 +11,7 @@
import org.cardanofoundation.rosetta.api.jooq.Indexes;
import org.cardanofoundation.rosetta.api.jooq.Keys;
-import org.cardanofoundation.rosetta.api.jooq.Preprod;
+import org.cardanofoundation.rosetta.api.jooq.Public;
import org.cardanofoundation.rosetta.api.jooq.tables.records.TransactionRecord;
import org.jooq.Condition;
import org.jooq.Field;
@@ -42,7 +42,7 @@ public class Transaction extends TableImpl {
private static final long serialVersionUID = 1L;
/**
- * The reference instance of preprod.transaction
+ * The reference instance of public.transaction
*/
public static final Transaction TRANSACTION = new Transaction();
@@ -55,107 +55,107 @@ public Class getRecordType() {
}
/**
- * The column preprod.transaction.tx_hash.
+ * The column public.transaction.tx_hash.
*/
public final TableField TX_HASH = createField(DSL.name("tx_hash"), SQLDataType.VARCHAR(64).nullable(false), this, "");
/**
- * The column preprod.transaction.auxiliary_datahash.
+ * The column public.transaction.auxiliary_datahash.
*/
public final TableField AUXILIARY_DATAHASH = createField(DSL.name("auxiliary_datahash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.transaction.block_hash.
+ * The column public.transaction.block_hash.
*/
public final TableField BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.transaction.collateral_inputs.
+ * The column public.transaction.collateral_inputs.
*/
public final TableField COLLATERAL_INPUTS = createField(DSL.name("collateral_inputs"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.collateral_return.
+ * The column public.transaction.collateral_return.
*/
public final TableField COLLATERAL_RETURN = createField(DSL.name("collateral_return"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.fee.
+ * The column public.transaction.fee.
*/
public final TableField FEE = createField(DSL.name("fee"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.inputs.
+ * The column public.transaction.inputs.
*/
public final TableField INPUTS = createField(DSL.name("inputs"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.invalid.
+ * The column public.transaction.invalid.
*/
public final TableField INVALID = createField(DSL.name("invalid"), SQLDataType.BOOLEAN, this, "");
/**
- * The column preprod.transaction.network_id.
+ * The column public.transaction.network_id.
*/
public final TableField NETWORK_ID = createField(DSL.name("network_id"), SQLDataType.SMALLINT, this, "");
/**
- * The column preprod.transaction.outputs.
+ * The column public.transaction.outputs.
*/
public final TableField OUTPUTS = createField(DSL.name("outputs"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.reference_inputs.
+ * The column public.transaction.reference_inputs.
*/
public final TableField REFERENCE_INPUTS = createField(DSL.name("reference_inputs"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.required_signers.
+ * The column public.transaction.required_signers.
*/
public final TableField REQUIRED_SIGNERS = createField(DSL.name("required_signers"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.script_datahash.
+ * The column public.transaction.script_datahash.
*/
public final TableField SCRIPT_DATAHASH = createField(DSL.name("script_datahash"), SQLDataType.VARCHAR(64), this, "");
/**
- * The column preprod.transaction.slot.
+ * The column public.transaction.slot.
*/
public final TableField SLOT = createField(DSL.name("slot"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.total_collateral.
+ * The column public.transaction.total_collateral.
*/
public final TableField TOTAL_COLLATERAL = createField(DSL.name("total_collateral"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.ttl.
+ * The column public.transaction.ttl.
*/
public final TableField TTL = createField(DSL.name("ttl"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.validity_interval_start.
+ * The column public.transaction.validity_interval_start.
*/
public final TableField VALIDITY_INTERVAL_START = createField(DSL.name("validity_interval_start"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.collateral_return_json.
+ * The column public.transaction.collateral_return_json.
*/
public final TableField COLLATERAL_RETURN_JSON = createField(DSL.name("collateral_return_json"), SQLDataType.JSONB, this, "");
/**
- * The column preprod.transaction.block.
+ * The column public.transaction.block.
*/
public final TableField BLOCK = createField(DSL.name("block"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.block_time.
+ * The column public.transaction.block_time.
*/
public final TableField BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.BIGINT, this, "");
/**
- * The column preprod.transaction.update_datetime.
+ * The column public.transaction.update_datetime.
*/
public final TableField UPDATE_DATETIME = createField(DSL.name("update_datetime"), SQLDataType.LOCALDATETIME(6), this, "");
@@ -168,21 +168,21 @@ private Transaction(Name alias, Table aliased, Field>[] par
}
/**
- * Create an aliased