-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp_types.go
More file actions
73 lines (67 loc) · 2.12 KB
/
Copy pathapp_types.go
File metadata and controls
73 lines (67 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package sdk
import "github.com/TrueBlocks/trueblocks-chifra/v6/pkg/types"
// Modeler interface exposes the Model method for SDK consumers
type Modeler interface {
Model(chain, format string, verbose bool, extraOpts map[string]any) types.Model
}
// Model type alias for the return type of Model()
type Model = types.Model
type ModelProps = types.ModelProps
type Abi = types.Abi
type Appearance = types.Appearance
type AppearanceTable = types.AppearanceTable
type Approval = types.Approval
type Block = types.Block
type BlockCount = types.BlockCount
type Bounds = types.Bounds
type CacheItem = types.CacheItem
type Chain = types.Chain
type ChunkAddress = types.ChunkAddress
type ChunkBloom = types.ChunkBloom
type ChunkIndex = types.ChunkIndex
type ChunkPin = types.ChunkPin
type ChunkRecord = types.ChunkRecord
type ChunkStats = types.ChunkStats
type Contract = types.Contract
type Count = types.Count
type Destination = types.Destination
type Function = types.Function
type IpfsPin = types.IpfsPin
type LightBlock = types.LightBlock
type Log = types.Log
type Manifest = types.Manifest
type Message = types.Message
type Monitor = types.Monitor
type MonitorClean = types.MonitorClean
type Name = types.Name
type NamedBlock = types.NamedBlock
type Parameter = types.Parameter
type RangeDates = types.RangeDates
type Receipt = types.Receipt
type ReportCheck = types.ReportCheck
type Result = types.Result
type Slurp = types.Slurp
type State = types.State
type Statement = types.Statement
type Status = types.Status
type Timestamp = types.Timestamp
type Token = types.Token
type Trace = types.Trace
type TraceAction = types.TraceAction
type TraceCount = types.TraceCount
type TraceFilter = types.TraceFilter
type TraceResult = types.TraceResult
type Transaction = types.Transaction
type Transfer = types.Transfer
type Withdrawal = types.Withdrawal
// EXISTING_CODE
type Asset = types.Name
type Cache = types.CacheItem
type Bloom = types.ChunkBloom
type Index = types.ChunkIndex
type Stats = types.ChunkStats
type Balance = types.Token
type ChunkAppearance = types.ChunkAppearance
type ChunkManifest = types.ChunkManifest
type Config = types.Config
// EXISTING_CODE