This repository was archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathregistry.ts
159 lines (128 loc) · 4.16 KB
/
registry.ts
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.
//
// SPDX-License-Identifier: MIT
import * as abis from './abi';
import { Api, Contract, ContractInstance } from './types';
interface QueueItem {
resolve(...args: any[]): void;
}
const REGISTRY_V1_HASHES = [
'0x34f7c51bbb1b1902fbdabfdf04811100f5c9f998f26dd535d2f6f977492c748e', // ropsten
'0x64c3ee34851517a9faecd995c102b339f03e564ad6772dc43a26f993238b20ec' // homestead
];
export default class Registry {
private _api: Api;
private _contracts: {
[key: string]: Contract;
} = {};
private _fetching = false;
private _instance: ContractInstance = null;
private _pendingContracts: {
[key: string]: Promise<Contract>;
} = {};
private _queue: QueueItem[] = [];
private _registryContract: Contract = null;
constructor(api: Api) {
this._api = api;
this.getInstance();
}
getInstance() {
if (this._instance) {
return Promise.resolve(this._instance);
}
if (this._fetching) {
return new Promise(resolve => {
this._queue.push({ resolve });
});
}
this._fetching = true;
return this.fetchContract().then((contract: Contract) => {
this._fetching = false;
this._instance = contract.instance;
this._queue.forEach(queued => {
queued.resolve(this._instance);
});
this._queue = [];
return this._instance;
});
}
getContract(_name: string) {
const name = _name.toLowerCase();
if (this._contracts[name]) {
return Promise.resolve(this._contracts[name]);
}
if (this._pendingContracts[name]) {
return this._pendingContracts[name];
}
const promise = this.lookupAddress(name).then((address: string) => {
this._contracts[name] = this._api.newContract(
(abis as any)[name],
address
);
delete this._pendingContracts[name];
return this._contracts[name];
});
this._pendingContracts[name] = promise;
return promise;
}
getContractInstance(_name: string) {
return this.getContract(_name).then(
(contract: Contract) => contract.instance
);
}
fetchContract() {
if (this._registryContract) {
return Promise.resolve(this._registryContract);
}
return this._api.parity
.registryAddress()
.then((address: string) =>
Promise.all([address, this._api.eth.getCode(address)])
)
.then(([address, code]: [string, string]) => {
const codeHash = this._api.util.sha3(code);
const version = REGISTRY_V1_HASHES.includes(codeHash) ? 1 : 2;
const abi = version === 1 ? abis.registry : abis.registry2;
const contract = this._api.newContract(abi, address);
// Add support for previous `set` and `get` methods
if (!contract.instance.get && contract.instance.getData) {
contract.instance.get = contract.instance.getData;
}
if (contract.instance.get && !contract.instance.getData) {
contract.instance.getData = contract.instance.get;
}
if (!contract.instance.set && contract.instance.setData) {
contract.instance.set = contract.instance.setData;
}
if (contract.instance.set && !contract.instance.setData) {
contract.instance.setData = contract.instance.set;
}
console.log(
`registry at ${address}, code ${codeHash}, version ${version}`
);
this._registryContract = contract;
return this._registryContract;
});
}
_createGetParams(_name: string, key: string) {
const name = _name.toLowerCase();
const sha3 = this._api.util.sha3.text(name);
return [sha3, key];
}
lookupAddress(name: string) {
return this.getInstance()
.then((instance: ContractInstance) => {
return instance.getAddress.call({}, this._createGetParams(name, 'A'));
})
.then((address: string) => {
console.log('[lookupAddress]', `${name}: ${address}`);
return address;
});
}
lookupMeta(name: string, key: string) {
return this.getInstance().then((instance: ContractInstance) => {
return instance.get.call({}, this._createGetParams(name, key));
});
}
}