Skip to content

Commit

Permalink
Merge branch 'main' into feature/alonzo-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mikarasv committed Apr 10, 2024
2 parents 3c9c12f + ccfcfca commit 3d70eea
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
60 changes: 30 additions & 30 deletions napi-pallas/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,47 @@
/* auto-generated by NAPI-RS */

export interface ShelleyPart {
isScript: boolean
hash?: string
pointer?: string
isScript: boolean;
hash?: string;
pointer?: string;
}
export interface AddressDiagnostic {
kind: string
network?: string
paymentPart?: ShelleyPart
delegationPart?: ShelleyPart
byronCbor?: string
kind: string;
network?: string;
paymentPart?: ShelleyPart;
delegationPart?: ShelleyPart;
byronCbor?: string;
}
export interface Output {
error?: string
bytes?: string
address?: AddressDiagnostic
error?: string;
bytes?: string;
address?: AddressDiagnostic;
}
export interface Attribute {
topic?: string
value?: string
topic?: string;
value?: string;
}
export interface Section {
topic?: string
identity?: string
error?: string
attributes: Array<Attribute>
bytes?: string
children: Array<Section>
}
export function parseAddress(raw: string): Output
topic?: string;
identity?: string;
error?: string;
attributes: Array<Attribute>;
bytes?: string;
children: Array<Section>;
}
export function parseAddress(raw: string): Output;
export interface SectionValidation {
section: Section
validations: Validations
section: Section;
validations: Validations;
}
export function safeParseTx(raw: string): SectionValidation
export function safeParseBlock(raw: string): Section
export function safeParseTx(raw: string): SectionValidation;
export function safeParseBlock(raw: string): Section;
export interface Validation {
name: string
value: boolean
description: string
name: string;
value: boolean;
description: string;
}
export interface Validations {
validations: Array<Validation>
era: string
validations: Array<Validation>;
era: string;
}
2 changes: 1 addition & 1 deletion web/app/routes/tx.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ActionFunctionArgs, json, type MetaFunction } from "@remix-run/node";
import { Form, useActionData } from "@remix-run/react";
import { Button, logCuriosity, RootSection } from "../components";
import { Button, RootSection, logCuriosity } from "../components";
import * as server from "./tx.server";
import TOPICS from "./tx.topics";

Expand Down

0 comments on commit 3d70eea

Please sign in to comment.