@leofcoin/chain 1.7.95 → 1.7.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/exports/browser/chain.js +2 -2
- package/exports/browser/{client-BGaLaHk2-CA-9lfx-.js → client-BlYwNU8G-Dl_fbYGp.js} +1 -1
- package/exports/browser/{messages-BqTna7yM-sC5s4kYG.js → messages-Y4l0mXGt-CdOuexeJ.js} +1 -4
- package/exports/browser/{node-browser-DwZGtboN.js → node-browser-Ch1mTBwl.js} +3 -8
- package/exports/browser/node-browser.js +1 -1
- package/exports/chain.d.ts +2 -2
- package/exports/chain.js +2 -2
- package/package.json +2 -2
package/exports/browser/chain.js
CHANGED
|
@@ -6001,10 +6001,10 @@ class Chain extends VersionControl {
|
|
|
6001
6001
|
transfer(from, to, amount) {
|
|
6002
6002
|
return this.call(addresses.nativeToken, 'transfer', [from, to, amount]);
|
|
6003
6003
|
}
|
|
6004
|
-
|
|
6004
|
+
balanceOf(address) {
|
|
6005
6005
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
|
|
6006
6006
|
}
|
|
6007
|
-
get
|
|
6007
|
+
get balance() {
|
|
6008
6008
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
|
|
6009
6009
|
}
|
|
6010
6010
|
get balances() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FormatInterface } from './node-browser-
|
|
1
|
+
import { F as FormatInterface } from './node-browser-Ch1mTBwl.js';
|
|
2
2
|
import './identity-Cn0iQbY3-CeW0giQS.js';
|
|
3
3
|
import './index-DUfUgiQY.js';
|
|
4
4
|
|
|
@@ -50,9 +50,6 @@ var proto$9 = {
|
|
|
50
50
|
has: Boolean()
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
/**
|
|
54
|
-
* @extends typeof {FormatInterface}
|
|
55
|
-
*/
|
|
56
53
|
class DHTMessageResponse extends FormatInterface {
|
|
57
54
|
get messageName() {
|
|
58
55
|
return 'PeernetDHTMessageResponse'
|
|
@@ -8115,12 +8115,6 @@ const distanceInKmBetweenEarthCoordinates = (lat1, lon1, lat2, lon2) => {
|
|
|
8115
8115
|
};
|
|
8116
8116
|
class DhtEarth {
|
|
8117
8117
|
providerMap = new Map();
|
|
8118
|
-
/**
|
|
8119
|
-
*
|
|
8120
|
-
*/
|
|
8121
|
-
constructor() {
|
|
8122
|
-
this.providerMap = new Map();
|
|
8123
|
-
}
|
|
8124
8118
|
async getCoordinates(address) {
|
|
8125
8119
|
if (!fetchedCoordinates[address]) {
|
|
8126
8120
|
const request = `https://whereis.leofcoin.org/?ip=${address}`;
|
|
@@ -8492,11 +8486,12 @@ class Peernet {
|
|
|
8492
8486
|
* @return {Promise} instance of Peernet
|
|
8493
8487
|
*/
|
|
8494
8488
|
async _init(options, password) {
|
|
8489
|
+
await getAddress();
|
|
8495
8490
|
this.storePrefix = options.storePrefix;
|
|
8496
8491
|
this.root = options.root;
|
|
8497
8492
|
const { RequestMessage, ResponseMessage, PeerMessage, PeerMessageResponse, PeernetMessage, DHTMessage, DHTMessageResponse, DataMessage, DataMessageResponse, PsMessage, ChatMessage, PeernetFile
|
|
8498
8493
|
// FolderMessageResponse
|
|
8499
|
-
} = await import(/* webpackChunkName: "messages" */ './messages-
|
|
8494
|
+
} = await import(/* webpackChunkName: "messages" */ './messages-Y4l0mXGt-CdOuexeJ.js');
|
|
8500
8495
|
/**
|
|
8501
8496
|
* proto Object containing protos
|
|
8502
8497
|
* @type {Object}
|
|
@@ -8590,7 +8585,7 @@ class Peernet {
|
|
|
8590
8585
|
if (this.#starting || this.#started)
|
|
8591
8586
|
return;
|
|
8592
8587
|
this.#starting = true;
|
|
8593
|
-
const importee = await import('./client-
|
|
8588
|
+
const importee = await import('./client-BlYwNU8G-Dl_fbYGp.js');
|
|
8594
8589
|
/**
|
|
8595
8590
|
* @access public
|
|
8596
8591
|
* @type {PeernetClient}
|
package/exports/chain.d.ts
CHANGED
|
@@ -50,8 +50,8 @@ export default class Chain extends VersionControl {
|
|
|
50
50
|
staticCall(contract: Address, method: string, parameters?: any[]): Promise<any>;
|
|
51
51
|
mint(to: Address, amount: bigint): Promise<any>;
|
|
52
52
|
transfer(from: Address, to: Address, amount: bigint): Promise<any>;
|
|
53
|
-
|
|
54
|
-
get
|
|
53
|
+
balanceOf(address: Address): Promise<bigint>;
|
|
54
|
+
get balance(): Promise<bigint>;
|
|
55
55
|
get balances(): Promise<{
|
|
56
56
|
[index: string]: bigint;
|
|
57
57
|
}>;
|
package/exports/chain.js
CHANGED
|
@@ -2147,10 +2147,10 @@ class Chain extends VersionControl {
|
|
|
2147
2147
|
transfer(from, to, amount) {
|
|
2148
2148
|
return this.call(addresses.nativeToken, 'transfer', [from, to, amount]);
|
|
2149
2149
|
}
|
|
2150
|
-
|
|
2150
|
+
balanceOf(address) {
|
|
2151
2151
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [address]);
|
|
2152
2152
|
}
|
|
2153
|
-
get
|
|
2153
|
+
get balance() {
|
|
2154
2154
|
return this.staticCall(addresses.nativeToken, 'balanceOf', [globalThis.peernet.selectedAccount]);
|
|
2155
2155
|
}
|
|
2156
2156
|
get balances() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leofcoin/chain",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.97",
|
|
4
4
|
"description": "Official javascript implementation",
|
|
5
5
|
"private": false,
|
|
6
6
|
"exports": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@leofcoin/messages": "^1.4.40",
|
|
70
70
|
"@leofcoin/multi-wallet": "^3.1.8",
|
|
71
71
|
"@leofcoin/networks": "^1.1.25",
|
|
72
|
-
"@leofcoin/peernet": "^1.1.
|
|
72
|
+
"@leofcoin/peernet": "^1.1.96",
|
|
73
73
|
"@leofcoin/storage": "^3.5.38",
|
|
74
74
|
"@leofcoin/utils": "^1.1.40",
|
|
75
75
|
"@leofcoin/workers": "^1.5.27",
|