-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
315 changed files
with
1,328 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { RestrictedAccessRule } from "./RestrictedAccessRule"; | ||
export type AccessRule = "AllowAll" | "DenyAll" | { | ||
"Restricted": RestrictedAccessRule; | ||
Restricted: RestrictedAccessRule; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export type Arg = { | ||
"Workspace": Array<number>; | ||
Workspace: Array<number>; | ||
} | { | ||
"Literal": Array<number>; | ||
Literal: Array<number>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export type NonFungibleId = { | ||
"U256": Array<number>; | ||
U256: Array<number>; | ||
} | { | ||
"String": string; | ||
String: string; | ||
} | { | ||
"Uint32": number; | ||
Uint32: number; | ||
} | { | ||
"Uint64": number; | ||
Uint64: number; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { AccessRule } from "./AccessRule"; | ||
export type OwnerRule = "OwnedBySigner" | "None" | { | ||
"ByAccessRule": AccessRule; | ||
ByAccessRule: AccessRule; | ||
} | { | ||
"ByPublicKey": Array<number>; | ||
ByPublicKey: Array<number>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
export type RejectReason = { | ||
"InvalidTransaction": string; | ||
InvalidTransaction: string; | ||
} | { | ||
"ExecutionFailure": string; | ||
ExecutionFailure: string; | ||
} | { | ||
"OneOrMoreInputsNotFound": string; | ||
OneOrMoreInputsNotFound: string; | ||
} | "NoInputs" | { | ||
"FailedToLockInputs": string; | ||
FailedToLockInputs: string; | ||
} | { | ||
"FailedToLockOutputs": string; | ||
FailedToLockOutputs: string; | ||
} | { | ||
"ForeignShardGroupDecidedToAbort": string; | ||
ForeignShardGroupDecidedToAbort: string; | ||
} | { | ||
"FeesNotPaid": string; | ||
FeesNotPaid: string; | ||
} | "Unknown"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { RuleRequirement } from "./RuleRequirement"; | ||
export type RequireRule = { | ||
"Require": RuleRequirement; | ||
Require: RuleRequirement; | ||
} | { | ||
"AnyOf": Array<RuleRequirement>; | ||
AnyOf: Array<RuleRequirement>; | ||
} | { | ||
"AllOf": Array<RuleRequirement>; | ||
AllOf: Array<RuleRequirement>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { RequireRule } from "./RequireRule"; | ||
export type RestrictedAccessRule = { | ||
"Require": RequireRule; | ||
Require: RequireRule; | ||
} | { | ||
"AnyOf": Array<RestrictedAccessRule>; | ||
AnyOf: Array<RestrictedAccessRule>; | ||
} | { | ||
"AllOf": Array<RestrictedAccessRule>; | ||
AllOf: Array<RestrictedAccessRule>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type { SubstateLockType } from "./SubstateLockType"; | ||
import type { SubstateRequirement } from "./SubstateRequirement"; | ||
export interface SubstateRequirementLockIntent { | ||
substate_requirement: SubstateRequirement; | ||
version_to_lock: number; | ||
lock_type: SubstateLockType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { TemplateDefV1 } from "./TemplateDefV1"; | ||
export type TemplateDef = { | ||
"V1": TemplateDefV1; | ||
V1: TemplateDefV1; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type { RejectReason } from "./RejectReason"; | ||
import type { SubstateDiff } from "./SubstateDiff"; | ||
export type TransactionResult = { | ||
"Accept": SubstateDiff; | ||
Accept: SubstateDiff; | ||
} | { | ||
"AcceptFeeRejectRest": [SubstateDiff, RejectReason]; | ||
AcceptFeeRejectRest: [SubstateDiff, RejectReason]; | ||
} | { | ||
"Reject": RejectReason; | ||
Reject: RejectReason; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export type Type = "Unit" | "Bool" | "I8" | "I16" | "I32" | "I64" | "I128" | "U8" | "U16" | "U32" | "U64" | "U128" | "String" | { | ||
"Vec": Type; | ||
Vec: Type; | ||
} | { | ||
"Tuple": Array<Type>; | ||
Tuple: Array<Type>; | ||
} | { | ||
"Other": { | ||
Other: { | ||
name: string; | ||
}; | ||
}; |
2 changes: 1 addition & 1 deletion
2
bindings/dist/types/tari-indexer-client/IndexerTransactionFinalizedResult.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
bindings/dist/types/wallet-daemon-client/ComponentAddressOrName.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { ComponentAddress } from "../ComponentAddress"; | ||
export type ComponentAddressOrName = { | ||
"ComponentAddress": ComponentAddress; | ||
ComponentAddress: ComponentAddress; | ||
} | { | ||
"Name": string; | ||
Name: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
import type { RestrictedAccessRule } from "./RestrictedAccessRule"; | ||
|
||
export type AccessRule = "AllowAll" | "DenyAll" | { "Restricted": RestrictedAccessRule }; | ||
export type AccessRule = "AllowAll" | "DenyAll" | { Restricted: RestrictedAccessRule }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
|
||
export type Amount = number; | ||
export type Amount = number; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
|
||
export type Arg = { "Workspace": Array<number> } | { "Literal": Array<number> }; | ||
export type Arg = { Workspace: Array<number> } | { Literal: Array<number> }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
import type { Type } from "./Type"; | ||
|
||
export interface ArgDef { name: string, arg_type: Type, } | ||
export interface ArgDef { | ||
name: string; | ||
arg_type: Type; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
import type { ComponentAddress } from "./ComponentAddress"; | ||
|
||
export interface AuthHook { component_address: ComponentAddress, method: string, } | ||
export interface AuthHook { | ||
component_address: ComponentAddress; | ||
method: string; | ||
} |
Oops, something went wrong.