Skip to content

Commit f871090

Browse files
author
abel
committed
(feat) Created the cookies admin for load balanced mainnet and testnet nodes.
1 parent 3ecfb4d commit f871090

File tree

119 files changed

+539
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+539
-257
lines changed

examples/SendToInjective.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import asyncio
55
import logging
66

7-
from pyinjective.constant import Network
7+
from pyinjective.core.network import Network
88
from pyinjective.sendtocosmos import Peggo
99

1010
import importlib.resources as pkg_resources

examples/chain_client/0_LocalOrderHash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77
from pyinjective.orderhash import OrderHashManager
88

examples/chain_client/13_MsgIncreasePositionMargin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88

examples/chain_client/15_MsgWithdraw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from pyinjective.async_client import AsyncClient
1818
from pyinjective.transaction import Transaction
19-
from pyinjective.constant import Network
19+
from pyinjective.core.network import Network
2020
from pyinjective.wallet import PrivateKey
2121

2222

examples/chain_client/16_MsgSubaccountTransfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88

examples/chain_client/17_MsgBatchUpdateOrders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88

examples/chain_client/18_MsgBid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88
async def main() -> None:

examples/chain_client/19_MsgGrant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88

examples/chain_client/1_MsgSend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey
77

88

examples/chain_client/20_MsgExec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyinjective.async_client import AsyncClient
44
from pyinjective.transaction import Transaction
5-
from pyinjective.constant import Network
5+
from pyinjective.core.network import Network
66
from pyinjective.wallet import PrivateKey, Address
77

88

0 commit comments

Comments
 (0)