This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtypes.js
More file actions
143 lines (124 loc) · 2.54 KB
/
types.js
File metadata and controls
143 lines (124 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// @flow
import BigNumber from 'bignumber.js'
import SecurityTokenContract from './src/contracts/SecurityToken'
/**
* CORE TYPES
*/
export type Web3 = {|
eth: {
clearSubscriptions: Function,
getTransactionReceipt: Function,
getBlock: Function,
abi: {
encodeFunctionCall: Function
},
Contract: Function,
sign: (dataToSign: any, address: Address) => Promise<string>
},
utils: {
toWei: Function,
fromWei: Function,
asciiToHex: Function,
hexToAscii: Function
}
|}
export type Web3Event = {|
returnValues: Object,
event: string, // event name
blockNumber: number,
transactionHash: string,
|}
export type Web3Contract = {|
events: Object,
getPastEvents: (event: string, {
filter?: Object,
fromBlock?: number | string,
toBlock?: number | string,
}) => Promise<Array<Web3Event>>,
|}
export type Web3Receipt = {|
transactionHash: string,
blockNumber: number,
contractAddress: Address,
gasUsed: number,
events: { [key: string]: Web3Event },
|}
export type Address = string
export type NetworkParams = {|
id: number,
web3: Web3,
web3WS: Web3,
account: Address,
txHashCallback: (hash: string) => void,
txEndCallback: (receipt: Object) => void,
|}
export type Artifact = {|
contractName: string,
abi: Object,
networks: Object,
|}
/**
* POLYMATH TYPES
*/
export type SymbolDetails = {|
ticker: string,
name: string,
timestamp?: Date,
status?: boolean,
expires?: ?Date,
owner?: Address,
txHash?: string,
|}
export type SecurityToken = {|
ticker: string,
name: string,
status: boolean,
owner: Address,
expires: ?Date,
timestamp: Date,
txHash: string, // ticker registration or token deployment (depends on status)
address?: Address,
isDivisible?: boolean,
details?: string,
contract?: SecurityTokenContract,
|}
export type STOFactory = {|
title: string,
name: string,
desc: string,
isVerified: boolean,
securityAuditLink: {
title: string,
url: string,
},
address: Address,
owner: Address,
|}
export type STODetails = {|
address: string,
start: Date,
end: Date,
cap: BigNumber,
raised: BigNumber,
tokensSold: BigNumber,
rate: number,
investorCount: number,
isPolyFundraise: boolean,
|}
export type STOPurchase = {|
investor: Address,
txHash: string,
amount: BigNumber,
paid: BigNumber,
|}
export type Investor = {|
address: Address,
from?: Date,
to?: Date,
expiry?: Date,
added?: Date,
addedBy?: Address,
canBuyFromSTO?: boolean,
isPercentage?: boolean,
minted?: BigNumber,
|}