Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wax
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
wax
Commits
e4479d91
Commit
e4479d91
authored
2 months ago
by
Jakub Ziebinski
Browse files
Options
Downloads
Patches
Plain Diff
Update beekeepy
parent
06ba386b
No related branches found
No related tags found
1 merge request
!230
Implementation of the python wax interface
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
python/poetry.lock
+3
-3
3 additions, 3 deletions
python/poetry.lock
python/pyproject.toml
+1
-1
1 addition, 1 deletion
python/pyproject.toml
python/wax/_private/transaction.py
+1
-2
1 addition, 2 deletions
python/wax/_private/transaction.py
python/wax/interfaces.py
+1
-2
1 addition, 2 deletions
python/wax/interfaces.py
with
6 additions
and
8 deletions
python/poetry.lock
+
3
−
3
View file @
e4479d91
...
...
@@ -164,12 +164,12 @@ tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"]
[[
package
]]
name
=
"beekeepy"
version
=
"0.0.1.dev
274+4d85d1e
"
version
=
"0.0.1.dev
332+0e78b14
"
description
=
"All in one package for beekeeper interaction via Python interface."
optional
=
false
python-versions
=
">
=
3.10
,
<
4.0
"
files
=
[
{file
=
"beekeepy-0.0.1.dev
274+4d85d1e
-py3-none-any.whl"
,
hash
=
"sha256:
e3be24b798c9f6a6fa012a1278e3fd2c7ea27edc8d8f0b1c8a3b4fb366db1d4f
"
}
,
{file
=
"beekeepy-0.0.1.dev
332+0e78b14
-py3-none-any.whl"
,
hash
=
"sha256:
a894b84f91d6d4b51d73dc2a84ed2f1775092f0ce48b16111cfa21712d5139e8
"
}
,
]
[
package.dependencies
]
...
...
@@ -1504,4 +1504,4 @@ propcache = ">=0.2.0"
[
metadata
]
lock-version
=
"2.0"
python-versions
=
"^3.10"
content-hash
=
"
7a3197917c3da3cd0e5998a7e55a
8b
1
65
503f554bd98a74845637355bc9f9
c4
9
"
content-hash
=
"
9db91c458bd396c5bbf1b0167720e2d567
8b65
aaf6e5248b7529045b654a5
c4
8
"
This diff is collapsed.
Click to expand it.
python/pyproject.toml
+
1
−
1
View file @
e4479d91
...
...
@@ -28,7 +28,7 @@ generate-setup-file = true
[tool.poetry.dependencies]
python
=
"^3.10"
protobuf
=
"4.24.4"
beekeepy
=
"0.0.1.dev
274+4d85d1e
"
beekeepy
=
"0.0.1.dev
332+0e78b14
"
[tool.poetry.dev-dependencies]
mypy
=
"1.11.2"
...
...
This diff is collapsed.
Click to expand it.
python/wax/_private/transaction.py
+
1
−
2
View file @
e4479d91
...
...
@@ -35,8 +35,7 @@ from wax.proto.transaction_pb2 import transaction as proto_transaction
if
TYPE_CHECKING
:
from
datetime
import
timedelta
from
beekeepy._interface.abc.asynchronous.wallet
import
UnlockedWallet
as
AsyncUnlockedWallet
from
beekeepy._interface.abc.synchronous.wallet
import
UnlockedWallet
from
beekeepy
import
AsyncUnlockedWallet
,
UnlockedWallet
from
wax
import
IWaxBaseInterface
from
wax._private.models.basic
import
AccountName
,
Hex
,
PublicKey
,
SigDigest
,
Signature
,
TransactionId
from
wax._private.models.operations
import
WaxMetaOperation
...
...
This diff is collapsed.
Click to expand it.
python/wax/interfaces.py
+
1
−
2
View file @
e4479d91
...
...
@@ -12,8 +12,7 @@ from wax.proto.transaction_pb2 import transaction as proto_transaction
if
TYPE_CHECKING
:
from
decimal
import
Decimal
from
beekeepy._interface.abc.asynchronous.wallet
import
UnlockedWallet
as
AsyncUnlockedWallet
from
beekeepy._interface.abc.synchronous.wallet
import
UnlockedWallet
from
beekeepy
import
AsyncUnlockedWallet
,
UnlockedWallet
from
wax._private.models.asset
import
(
AssetFactory
,
HbdNaiAssetConvertible
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment