@splashprotocol/remote-builder 2.0.0-beta.10 → 2.0.0-beta.43
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/.turbo/turbo-build.log +6 -6
- package/dist/index.js +5 -9
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mCJS[39m Build start
|
12
12
|
|
13
|
-
[90m[[
|
13
|
+
[90m[[90m6:48:02 PM[90m][39m [43m[30m WARN [39m[49m [33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1mThe condition "types" here will never be used as it comes after both "import" and "require"[0m [package.json]
|
14
14
|
|
15
15
|
package.json:16:6:
|
16
16
|
[37m 16 │ [32m"types"[37m: "./dist/index.d.ts"
|
@@ -31,7 +31,7 @@
|
|
31
31
|
|
32
32
|
|
33
33
|
|
34
|
-
[90m[[
|
34
|
+
[90m[[90m6:48:02 PM[90m][39m [43m[30m WARN [39m[49m [33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1mThe condition "types" here will never be used as it comes after both "import" and "require"[0m [package.json]
|
35
35
|
|
36
36
|
package.json:16:6:
|
37
37
|
[37m 16 │ [32m"types"[37m: "./dist/index.d.ts"
|
@@ -52,11 +52,11 @@
|
|
52
52
|
|
53
53
|
|
54
54
|
[32mESM[39m [1mdist/index.js [22m[32m1.47 KB[39m
|
55
|
-
[32mESM[39m ⚡️ Build success in
|
55
|
+
[32mESM[39m ⚡️ Build success in 77ms
|
56
56
|
[32mCJS[39m [1mdist/index.cjs [22m[32m2.58 KB[39m
|
57
|
-
[32mCJS[39m ⚡️ Build success in
|
57
|
+
[32mCJS[39m ⚡️ Build success in 77ms
|
58
58
|
[34mDTS[39m Build start
|
59
|
-
[32mDTS[39m ⚡️ Build success in
|
59
|
+
[32mDTS[39m ⚡️ Build success in 775ms
|
60
60
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.87 KB[39m
|
61
61
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m1.87 KB[39m
|
62
|
-
[2K[1G✨ Done in 1.
|
62
|
+
[2K[1G✨ Done in 1.42s.
|
package/dist/index.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// src/core/models/RemoteTransaction/RemoteTransaction.ts
|
1
|
+
3; // src/core/models/RemoteTransaction/RemoteTransaction.ts
|
2
2
|
var RemoteTransaction = class _RemoteTransaction {
|
3
3
|
constructor(serialization, builder) {
|
4
4
|
this.builder = builder;
|
@@ -30,13 +30,13 @@ var SplashRemoteBuilder = class _SplashRemoteBuilder {
|
|
30
30
|
this.api = api;
|
31
31
|
}
|
32
32
|
sign() {
|
33
|
-
throw new Error(
|
33
|
+
throw new Error('not implemented.');
|
34
34
|
}
|
35
35
|
submit() {
|
36
|
-
throw new Error(
|
36
|
+
throw new Error('not implemented.');
|
37
37
|
}
|
38
38
|
trade() {
|
39
|
-
return Promise.resolve(RemoteTransaction.new(
|
39
|
+
return Promise.resolve(RemoteTransaction.new('', this));
|
40
40
|
}
|
41
41
|
};
|
42
42
|
|
@@ -58,8 +58,4 @@ var SignedRemoteTransaction = class _SignedRemoteTransaction {
|
|
58
58
|
return this.builder.submit(this);
|
59
59
|
}
|
60
60
|
};
|
61
|
-
export {
|
62
|
-
RemoteTransaction,
|
63
|
-
SignedRemoteTransaction,
|
64
|
-
SplashRemoteBuilder
|
65
|
-
};
|
61
|
+
export { RemoteTransaction, SignedRemoteTransaction, SplashRemoteBuilder };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@splashprotocol/remote-builder",
|
3
|
-
"version": "2.0.0-beta.
|
3
|
+
"version": "2.0.0-beta.43",
|
4
4
|
"type": "module",
|
5
5
|
"description": "Api client of splash protocol",
|
6
6
|
"scripts": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
]
|
34
34
|
},
|
35
35
|
"peerDependencies": {
|
36
|
-
"@splashprotocol/api": "2.0.0-beta.
|
37
|
-
"@splashprotocol/core": "2.0.0-beta.
|
36
|
+
"@splashprotocol/api": "2.0.0-beta.23",
|
37
|
+
"@splashprotocol/core": "2.0.0-beta.13"
|
38
38
|
}
|
39
39
|
}
|