Skip to content

Commit 6317dc2

Browse files
rlekdmsjaybbbb
authored andcommitted
Update v2.1.2
1 parent 935197b commit 6317dc2

File tree

9 files changed

+652
-395
lines changed

9 files changed

+652
-395
lines changed

abi/prod/bridge/Xrp.abi

+601-337
Large diffs are not rendered by default.

composes/docker-compose.common.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ services:
55
context: ../
66
dockerfile: ./Dockerfile
77
environment:
8-
VERSION: v2.1.1
8+
VERSION: v2.1.2

config/prod/xrp.js

+14-9
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ module.exports = {
77
'bsc',
88
'matic',
99
"wemix",
10+
'silicon',
1011
],
11-
12+
silicon: {
13+
xrpBridge: "0x83bca9503D7888F2eFcDF18cCa2E79f8Ba75d17c",
14+
addressbook: "0x37CE54AFB91F3645b3e7455Cb4C5028507D6aBeB",
15+
multisig: "0xCe303B5740C70fFe4477E0d21E3B35770587F3B1",
16+
},
1217
// Bridge Addresses
1318
bridge_address: {
1419
klaytn: {
1520
minter: "0x917655B6C27A3D831b4193CE18ECe6bfcC806BF8",
1621
multisig: "0x22Bef83bABcC1169855D748D13523CA10aD87dF7",
1722
},
18-
avax: {
19-
minter: "0xE38ca00A6FD34B793012Bb9c1471Adc4E98386cF",
20-
multisig: "0xfa50391705D2FA7ac47Dd211B78378825bc763e6",
21-
admin: "0x009071058740276327A393B084eC447b8F0Fc6Ae",
22-
},
2323
bsc: {
2424
minter: "0xE38ca00A6FD34B793012Bb9c1471Adc4E98386cF",
2525
multisig: "0xfa50391705D2FA7ac47Dd211B78378825bc763e6",
@@ -35,11 +35,16 @@ module.exports = {
3535
multisig: "0x60D85ED151CBdE337019263A54AD2fb6b495547C",
3636
admin: "0xC9bD6dE100b923C275e74dC75F895B50c7488eD3",
3737
},
38+
silicon: {
39+
minter: "0x065BaE5639EB5718E0F76B27967f582e4b7d63a8",
40+
multisig: "0xCe303B5740C70fFe4477E0d21E3B35770587F3B1",
41+
admin: "0x478172a50906CaC395F8567a8dC001c7EeCB2A0A",
42+
},
3843
governance: {
3944
chain: "XRP",
40-
address: "rLcxBUrZESqHnruY4fX7GQthRjDCDSAWia",
41-
bytes: "0x00d73701c4123236e2d61d372052eadcc3ede48b06e617b033",
42-
id: "0xfd13fd208d2a902efdd49dab8b23889bd6fac1141b9b88666c3e4e9c6612b5f1",
45+
address: "rJTEBWu7u1NcJAiMQ9iEa1dbsuPyhTiW23",
46+
bytes: "0x00bf70ca91c426e78c28f0fa724e679d50ac59f9378a71efbd",
47+
id: "0x4f1d4170def98e5be4eb9a487615c2e39939c184839448e44096bafc42f5ee65",
4348
},
4449
}
4550
}

lib/decimal.js

+4-24
Original file line numberDiff line numberDiff line change
@@ -152,30 +152,10 @@ String.prototype.dadd = function(w){
152152
return res.reverse().join('').dmove(-d);
153153
}
154154

155-
String.prototype.dsub = function(w){
156-
var o = dton(this.toString(), w);
157-
var d = o.d, v = o.v; w = o.w;
158-
159-
if(v.dcomp(w) < 0){ var t = v; v = w; w = t; }
160-
161-
var vl = v.length, wl = w.length, l = (vl > wl ? vl : wl);
162-
163-
v = v.split('').reverse().join('');
164-
w = w.split('').reverse().join('');
165-
166-
var res = [], x = 0;
167-
168-
for(var i = 0; i < l; i++){
169-
var vi = (i < vl ? v.charCodeAt(i) - 48 : 0);
170-
var wi = (i < wl ? w.charCodeAt(i) - 48 : 0);
171-
172-
var r = vi - wi + x;
173-
if(r < 0){ x = -1; r += 10; } else x = 0;
174-
175-
res.push(r);
176-
}
177-
178-
return res.reverse().join('').dmove(-d);
155+
String.prototype.dsub = function(v, prec = PREC) {
156+
const ba = new BigNumber(this);
157+
const bb = new BigNumber(String(v));
158+
return ba.minus(bb).toFixed(prec).dclean();
179159
}
180160

181161
String.prototype.dmul = function(w){

src/evm/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class EVMValidator {
142142
if(config.l2[this.chainLower]) {
143143
let l1Chain = config.l2[this.chainLower].l1_chain
144144
const l1 = this.l1 = Britto.getNodeConfigBase('l1');
145-
l1.rpc = config.endpoints[l1Chain].rpc[0];
145+
l1.rpc = config.endpoints[l1Chain].rpc;
146146
l1.abi = Britto.getJSONInterface({filename: 'zkevm/PolygonValidiumEtrog'});
147147
l1.address = config.l2[this.chainLower].PolygonValidiumEtrog
148148
new Britto(l1, l1Chain).connectWeb3();

src/ton/utils/ton.api.js

+3-9
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,7 @@ class TonAPI {
165165

166166
const txAddrSlice = new TupleSlice(txAddrStack.stack);
167167
transactionAddress = txAddrSlice.readCell().beginParse().readAddress()?.toFriendly();
168-
} catch (e) {
169-
console.log(e);
170-
}
168+
} catch (e) {}
171169

172170
return transactionAddress;
173171
}
@@ -185,9 +183,7 @@ class TonAPI {
185183
const payload = tupleSlice.readCell().toString();
186184

187185
data = { destination, amount, payload };
188-
} catch (e) {
189-
console.log(e);
190-
}
186+
} catch (e) {}
191187

192188
return data;
193189
}
@@ -217,9 +213,7 @@ class TonAPI {
217213
}
218214

219215
config = { required, confirmation, confirmedValidators };
220-
} catch (e) {
221-
console.log(e);
222-
}
216+
} catch (e) {}
223217

224218
return config;
225219
}

src/ton_layer_1/index.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,7 @@ class TONLayer1Validator {
409409
let opCode = null
410410
try {
411411
opCode = "0x"+slice.readUint(32).toString('hex'); // BN return
412-
} catch (e) {
413-
console.log(e);
414-
}
412+
} catch (e) {}
415413
if(!opCode || opCode !== "0x7362d09c") continue;
416414

417415
let obj = {};
@@ -575,6 +573,12 @@ class TONLayer1Validator {
575573
await valid(params, chainIds, this.orbitHub);
576574

577575
async function valid(data, chainIds, orbitHubAddress) {
576+
let sender = Britto.getRandomPkAddress();
577+
if(!sender || !sender.pk || !sender.address){
578+
logger.ton_layer_1.error("Cannot Generate account");
579+
return;
580+
}
581+
578582
let fromChainId = chainIds[data.fromChain];
579583
let toChainId = chainIds[data.toChain];
580584
if(!fromChainId || !toChainId){

src/ton_layer_1/utils/ton.api.js

+3-9
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,7 @@ class TonAPI {
167167

168168
const txAddrSlice = new TupleSlice(txAddrStack.stack);
169169
transactionAddress = txAddrSlice.readCell().beginParse().readAddress()?.toFriendly();
170-
} catch (e) {
171-
console.log(e);
172-
}
170+
} catch (e) {}
173171

174172
return transactionAddress;
175173
}
@@ -187,9 +185,7 @@ class TonAPI {
187185
const payload = tupleSlice.readCell().toString();
188186

189187
data = { destination, amount, payload };
190-
} catch (e) {
191-
console.log(e);
192-
}
188+
} catch (e) {}
193189

194190
return data;
195191
}
@@ -219,9 +215,7 @@ class TonAPI {
219215
}
220216

221217
config = { required, confirmation, confirmedValidators };
222-
} catch (e) {
223-
console.log(e);
224-
}
218+
} catch (e) {}
225219

226220
return config;
227221
}

src/xrp/index.js

+18-2
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,14 @@ class XRPValidator {
492492
return parseInt(data) <= 4294967295;
493493
}
494494

495+
async checkValidSuggestion(suggestIndex, dataIndex) {
496+
let suggestion = await xrpBridge.contract.methods.getSuggestion(0, suggestIndex).call().catch(e => {return;});
497+
if(suggestion && parseInt(suggestion.fee) !== 0 && parseInt(suggestion.swapIndex) === parseInt(dataIndex)) {
498+
return suggestion;
499+
}
500+
return;
501+
}
502+
495503
async getSuggestRelay() {
496504
this.intervalClear(this.intervals.getSuggestRelay);
497505

@@ -539,8 +547,16 @@ class XRPValidator {
539547

540548
let suggestion = await xrpBridge.contract.methods.getSuggestion(0, data.suggestIndex).call().catch(e => {return;});
541549
if (!suggestion || parseInt(suggestion.fee) === 0 || parseInt(suggestion.swapIndex) !== parseInt(data.dataIndex)){
542-
logger.xrp.error('validateTransactionSuggested error: invalid suggestion');
543-
return;
550+
let validSuggestion
551+
for(let i = data.suggestIndex - 1; i >= 0; i--) {
552+
validSuggestion = this.checkValidSuggestion(i, dataIndex);
553+
}
554+
if(validSuggestion) {
555+
suggestion = validSuggestion
556+
} else {
557+
logger.xrp.error('validateTransactionSuggested error: invalid suggestion');
558+
return;
559+
}
544560
}
545561

546562
let validators = await xrpBridge.multisig.contract.methods.getOwners().call();

0 commit comments

Comments
 (0)