Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Yoroi-lib UtxoService to manage utxo set for Cardano wallets #2857

Merged
merged 37 commits into from
Dec 6, 2022
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d1b279c
add storage for new UTXO model
yushih May 20, 2022
985558f
use Yoroi-lib UtxoService to update UTXO state
yushih May 23, 2022
662bb16
use Yoroi-lib UtxoService result when getting UTXOs
yushih May 25, 2022
9ef56e1
add migration to populate new UTXO storage
yushih May 26, 2022
c6fd09e
add test for migration
yushih May 27, 2022
ddfab73
associate utxo data with public deriver instead of conceptual wallet
yushih May 27, 2022
990a757
fix rollback handling and tests
yushih May 27, 2022
59c0a98
lint
yushih May 30, 2022
68d7d76
Merge remote-tracking branch 'origin/develop' into yushi/yoroi-lib-utxo
vsubhuman Jun 13, 2022
9f0cf47
package-lock update
vsubhuman Jun 13, 2022
ce875c0
bump db schema version
yushih Jun 27, 2022
08a67c9
bug fix
yushih Jun 27, 2022
f193ef2
bump yoroi-lib version
yushih Jun 27, 2022
d525882
bug fix
yushih Jun 28, 2022
5fb8f33
bump yoroi-lib version
yushih Jun 28, 2022
0fd1a7a
add new API endpoints to mock server
yushih Jun 29, 2022
eed819b
update
yushih Sep 26, 2022
3fad170
seperate updating utxos from updating txs
yushih Sep 26, 2022
1fb3676
fix test
yushih Sep 28, 2022
730b318
Merge branch 'develop' into yushi/yoroi-lib-utxo
vsubhuman Oct 6, 2022
7adfb07
Merge branch 'develop' into yushi/yoroi-lib-utxo
vsubhuman Oct 13, 2022
9538c10
fix test mock server
yushih Oct 25, 2022
97d41d1
Merge branch 'develop' into yushi/yoroi-lib-utxo
yushih Oct 25, 2022
d1502d1
fix unit tests
yushih Oct 25, 2022
527b328
fix remove wallet
yushih Oct 25, 2022
d428ccf
Merge branch 'develop' into yushi/yoroi-lib-utxo
vsubhuman Oct 26, 2022
6d4cf99
bump yoroi-lib version
yushih Oct 27, 2022
7b99ae6
fix mock server
yushih Oct 27, 2022
1f199ea
Merge branch 'develop' into yushi/yoroi-lib-utxo
Nebyt Oct 27, 2022
282921c
bump yoroi-lib version
yushih Oct 31, 2022
8a03b11
yoroi-lib version bump
vsubhuman Dec 1, 2022
094a093
Merge remote-tracking branch 'origin/develop' into yushi/yoroi-lib-utxo
vsubhuman Dec 1, 2022
e14455b
version bump: 4.17.001
vsubhuman Dec 1, 2022
979fea2
flow fixes
vsubhuman Dec 2, 2022
1f2ba3a
mock server fix
vsubhuman Dec 2, 2022
ee6b568
mock server fix
vsubhuman Dec 2, 2022
b1dfc1d
Merge branch 'develop' into yushi/yoroi-lib-utxo
vsubhuman Dec 6, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/yoroi-extension/.flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
.*/.circleci/.*
<PROJECT_ROOT>/dev/.*
<PROJECT_ROOT>/build/.*
<PROJECT_ROOT>/node_modules/@emurgo/yoroi-lib/node_modules/resolve/test/resolver/malformed_package_json/package.json

[include]
../node_modules/eslint-plugin-jsx-a11y
Expand Down
6 changes: 6 additions & 0 deletions packages/yoroi-extension/app/api/ada/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
getPendingTransactions,
removeAllTransactions,
updateTransactions,
updateUtxos,
} from './lib/storage/bridge/updateTransactions';
import {
addrContainsAccountKey,
Expand Down Expand Up @@ -674,6 +675,11 @@ export default class AdaApi {
const { skip = 0, limit } = request;
try {
if (!request.isLocalRequest) {
await updateUtxos(
request.publicDeriver.getDb(),
request.publicDeriver,
request.checkAddressesInUse,
);
await updateTransactions(
request.publicDeriver.getDb(),
request.publicDeriver,
Expand Down
266 changes: 265 additions & 1 deletion packages/yoroi-extension/app/api/ada/lib/state-fetch/mockNetwork.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type {
FilterUsedRequest, FilterUsedResponse, FilterFunc,
} from '../../../common/lib/state-fetch/currencySpecificTypes';
import { RollbackApiError, } from '../../../common/errors';
import { toEnterprise, addressToKind, toHexOrBase58, } from '../storage/bridge/utils';
import { toEnterprise, addressToKind, toHexOrBase58 } from '../storage/bridge/utils';
import { CoreAddressTypes } from '../storage/database/primitives/enums';
import type { CoreAddressT } from '../storage/database/primitives/enums';
import {
Expand All @@ -37,6 +37,26 @@ import { networks, getCardanoHaskellBaseConfig } from '../storage/database/prepa
import { bech32 } from 'bech32';
import { Bech32Prefix } from '../../../../config/stringConfig';
import { parseTokenList } from '../../transactions/utils';
import type { UtxoApiContract } from '@emurgo/yoroi-lib/dist/utxo/api';
import type {
TipStatusReference,
Utxo,
UtxoApiResponse,
UtxoAtPointRequest,
UtxoDiff,
UtxoDiffItem,
UtxoDiffSincePointRequest
} from '@emurgo/yoroi-lib/dist/utxo/models';
import { UtxoApiResult, } from '@emurgo/yoroi-lib/dist/utxo/models';

function byronAddressToHex(byronAddrOrHex: string): string {
if (RustModule.WalletV4.ByronAddress.is_valid(byronAddrOrHex)) {
return Buffer.from(
RustModule.WalletV4.ByronAddress.from_base58(byronAddrOrHex).to_bytes()
).toString('hex');
}
return byronAddrOrHex;
}

/** convert bech32 address to bytes */
function fixAddresses(
Expand Down Expand Up @@ -678,3 +698,247 @@ export function genGetMultiAssetMetadata(
): MultiAssetMintMetadataFunc {
return async (_) => ({});
}


export class MockUtxoApi implements UtxoApiContract {
blockchain: Array<RemoteTransaction>;
safeConfirmations: number;

constructor(
blockchain: Array<RemoteTransaction>,
safeConfirmations: number,
) {
this.blockchain = blockchain;
this.safeConfirmations = safeConfirmations;
}

_getLastSafeBlockTxIndex(): number {
let lastHeight = null;
let i;
for (i = this.blockchain.length - 1; i >= 0; i --) {
if (this.blockchain[i].tx_state === 'Successful') {
lastHeight = this.blockchain[i].height;
break;
}
}
if (lastHeight == null) {
throw new Error('no successful tx');
}
for (; i >= 0; i --) {
const currentHeight = this.blockchain[i].height;
if (
currentHeight != null &&
lastHeight - currentHeight >= this.safeConfirmations
) {
break;
}
}
if (i === -1) {
throw new Error('not enough blocks for a safe block');
} else {
return i;
}
}

async getBestBlock(): Promise<string> {
for (let i = this.blockchain.length - 1; i >= 0; i --) {
if (this.blockchain[i].tx_state === 'Successful') {
const hash = this.blockchain[i].block_hash;
if (!hash) {
throw new Error('expect hash');
}
return hash;
}
}
throw new Error('no successful tx');
}

async getSafeBlock(): Promise<string> {
const hash = this.blockchain[this._getLastSafeBlockTxIndex()].block_hash;
if (!hash) {
throw new Error('expect hash');
}
return hash;
}

async getTipStatusWithReference(
bestBlocks: string[]
): Promise<UtxoApiResponse<TipStatusReference>> {
const blocks = bestBlocks.map(
hash => {
const index = this.blockchain.findIndex(tx => tx.block_hash === hash);
if (index === -1) {
return { index, height: null, hash };
}
const height = this.blockchain[index].height;
return { index, height, hash };
}
).filter(b => b.index !== -1).sort((b1, b2) => b1.index - b2.index);
if (blocks.length === 0) {
return {
result: UtxoApiResult.SAFEBLOCK_ROLLBACK
};
}

return {
result: UtxoApiResult.SUCCESS,
value: {
reference: {
lastFoundBestBlock: blocks[blocks.length - 1].hash,
lastFoundSafeBlock: blocks[0].hash,
}
}
};
}

async getUtxoAtPoint(req: UtxoAtPointRequest): Promise<UtxoApiResponse<Utxo[]>> {
const { addresses, referenceBlockHash } = req;
const hexAddresses = addresses.map(a => {
const hex = fixAddresses(a, networks.CardanoMainnet);
if (hex.match(/^([a-f0-9][a-f0-9])+$/)) {
return hex;
}
return byronAddressToHex(a);
});

let lastTxIndex;
for (lastTxIndex = this.blockchain.length - 1; lastTxIndex >= 0; lastTxIndex--) {
const hash = this.blockchain[lastTxIndex].block_hash;
if (hash === referenceBlockHash) {
break;
}
}
if (lastTxIndex === -1) {
throw new Error('block not found');
}
let utxos = [];
for (let i = 0; i <= lastTxIndex; i++) {
const tx = this.blockchain[i];
if (tx.tx_state !== 'Successful') {
continue;
}
// remove spent
utxos = utxos.filter(
utxo => !tx.inputs.some(
input => input.txHash === utxo.txHash && input.index === utxo.txIndex
)
);
// add new
for (let outputIndex = 0; outputIndex < tx.outputs.length; outputIndex++) {
const output = tx.outputs[outputIndex];
if (!(
hexAddresses.includes(byronAddressToHex(output.address)) ||
hexAddresses.includes(Buffer.from(toEnterprise(output.address)?.to_address().to_bytes() || '').toString('hex'))
)) {
continue;
}

const { height } = tx;
if (height == null) {
throw new Error('expect height');
}
utxos.push({
utxoId: `${tx.hash}${outputIndex}`,
txHash: tx.hash,
txIndex: outputIndex,
receiver: output.address,
amount: new BigNumber(output.amount),
assets: output.assets.map(asset => ({
assetId: asset.assetId,
policyId: asset.policyId,
name: asset.name,
amount: asset.amount,
})),
blockNum: height,
});
};
}
return {
result: UtxoApiResult.SUCCESS,
value: utxos,
};
}

async getUtxoDiffSincePoint(req: UtxoDiffSincePointRequest): Promise<UtxoApiResponse<UtxoDiff>> {
const { addresses, untilBlockHash, afterBestBlock, } = req;

const hexAddresses = addresses.map(a => {
const hex = fixAddresses(a, networks.CardanoMainnet);
if (hex.match(/^([a-f0-9][a-f0-9])+$/)) {
return hex;
}
return byronAddressToHex(a);
});

let seenUntilBlock = false;
const utxoDiffItems = [];
for (let i = this.blockchain.length - 1; i >= 0; i--) {
const tx = this.blockchain[i];
if (tx.tx_state !== 'Successful') {
continue;
}

if (tx.block_hash === untilBlockHash) {
seenUntilBlock = true;
}

if (seenUntilBlock) {
if (tx.block_hash === afterBestBlock) {
break;
}

tx.outputs.forEach((output, outputIndex) => {
if (!(
hexAddresses.includes(byronAddressToHex(output.address)) ||
hexAddresses.includes(Buffer.from(toEnterprise(output.address)?.to_address().to_bytes() || '').toString('hex'))
)) {
return;
}
const utxoId = `${tx.hash}${outputIndex}`
utxoDiffItems.push(
{
type: 'output',
id: utxoId,
amount: new BigNumber(output.amount),
utxo: {
utxoId,
txHash: tx.hash,
txIndex: outputIndex,
receiver: output.address,
amount: new BigNumber(output.amount),
assets: output.assets.map(asset => ({
assetId: asset.assetId,
policyId: asset.policyId,
name: asset.name,
amount: asset.amount,
})),
blockNum: tx.height,
}
}
);
});
tx.inputs.filter(input =>
hexAddresses.includes(byronAddressToHex(input.address)) ||
hexAddresses.includes(Buffer.from(toEnterprise(input.address)?.to_address().to_bytes() || '').toString('hex'))
).forEach(input => {
utxoDiffItems.push(
({
type: 'input',
id: input.id,
amount: new BigNumber(input.amount),
}: UtxoDiffItem)
);
});
}
}
if (!seenUntilBlock) {
return {
result: UtxoApiResult.BESTBLOCK_ROLLBACK
};
}
return {
result: UtxoApiResult.SUCCESS,
value: { diffItems: utxoDiffItems },
};
}
}
18 changes: 18 additions & 0 deletions packages/yoroi-extension/app/api/ada/lib/state-fetch/utxoApi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// @flow
import axios from 'axios';
import {
BatchedEmurgoUtxoApi,
EmurgoUtxoApi
} from '@emurgo/yoroi-lib/dist/utxo/emurgo-api';
import type { UtxoApiContract } from '@emurgo/yoroi-lib/dist/utxo/api';

export default class UtxoApi extends BatchedEmurgoUtxoApi {
// so that the unit tests can override it with mocks
static utxoApiFactory: (string) => UtxoApiContract = (backendServiceUrl) =>
new EmurgoUtxoApi(axios, backendServiceUrl + '/api/', true);

constructor(backendServiceUrl: string) {
const utxoApi = UtxoApi.utxoApiFactory(backendServiceUrl);
super(utxoApi);
}
}
Loading