abstract-math 0.0.0.5__tar.gz → 0.0.0.7__tar.gz

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.

Potentially problematic release.


This version of abstract-math might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abstract_math
3
- Version: 0.0.0.5
3
+ Version: 0.0.0.7
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
4
4
  long_description = fh.read()
5
5
  setuptools.setup(
6
6
  name='abstract_math',
7
- version='0.0.0.05',
7
+ version='0.0.0.07',
8
8
  author='putkoff',
9
9
  author_email='partners@abstractendeavors.com',
10
10
  description="",
@@ -6,7 +6,7 @@ SOL_LAMPORTS = sol_lamports =int(exponential(1,exp=SOL_DECIMAL_PLACE,num=1))
6
6
  def get_proper_args(strings,*args,**kwargs):
7
7
  properArgs = []
8
8
  for key in strings:
9
- kwarg get_virtual_reserve_ratio(*args,**kwargs)= kwargs.get(key)
9
+ kwarg = kwargs.get(key)
10
10
  if kwarg == None and args:
11
11
  kwarg = args[0]
12
12
  args = [] if len(args) == 1 else args[1:]
@@ -18,8 +18,8 @@ def get_lamports(integer):
18
18
  return exp_it(10,len(str(integer))+1,1)
19
19
  def get_lamport_difference(lamports,virtual_lamports):
20
20
  integer = int(virtual_lamports/lamports)
21
- exponential = len(str(integer))
22
- return int(exponential(1,exp=exponential,num=1))
21
+ exp = len(str(integer))
22
+ return int(exponential(1,exp=exp,num=1))
23
23
  #virtual reserves
24
24
  def get_vitual_reserves(*args,**kwargs):
25
25
  proper_args = get_proper_args(["virtualSolReserves","virtualTokenReserves"],*args,**kwargs)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abstract_math
3
- Version: 0.0.0.5
3
+ Version: 0.0.0.7
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha