Skip to content

Commit 93faacd

Browse files
authored
Merge pull request #222 from multiversx/update-main-deps-3-iul
Update main branch packages
2 parents 771e2f4 + 8667e8a commit 93faacd

4 files changed

Lines changed: 26 additions & 24 deletions

File tree

examples/contracts/issue-esdt-with-contract/issue-with-contract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
TransactionsFactoryConfig, UserSecretKey)
99

1010
SIMULATOR_URL = "http://localhost:8085"
11-
GENERATE_BLOCKS_URL = "/simulator/generate-blocks"
11+
GENERATE_BLOCKS_URL = "simulator/generate-blocks"
1212
GENERATE_BLOCKS_UNTIL_EPOCH_REACHED_URL = "simulator/generate-blocks-until-epoch-reached"
1313
GENERATE_BLOCKS_UNTIL_TX_PROCESSED = "simulator/generate-blocks-until-transaction-processed"
1414

examples/staking/staking.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from multiversx_sdk import (Address, DelegationTransactionsOutcomeParser,
88
ProxyNetworkProvider, TransactionOnNetwork,
99
TransactionsFactoryConfig,
10-
TransferTransactionsFactory, UserSecretKey)
10+
TransferTransactionsFactory, UserSecretKey, NetworkProviderConfig)
1111

1212
SIMULATOR_URL = "http://localhost:8085"
1313
INITIAL_WALLETS_URL = "simulator/initial-wallets"
@@ -18,8 +18,10 @@
1818
parent_directory = Path(__file__).parent
1919

2020
def main():
21+
# create a network provider config to increase timeout
22+
config = NetworkProviderConfig(requests_options={"timeout": 10})
2123
# create a network provider
22-
provider = ProxyNetworkProvider(SIMULATOR_URL)
24+
provider = ProxyNetworkProvider(url=SIMULATOR_URL, config=config)
2325

2426
key = UserSecretKey.generate()
2527
address = key.generate_public_key().to_address("erd")

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ go 1.23
55
require (
66
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
77
github.com/gin-gonic/gin v1.10.0
8-
github.com/multiversx/mx-chain-core-go v1.4.1
9-
github.com/multiversx/mx-chain-go v1.11.1
8+
github.com/multiversx/mx-chain-core-go v1.4.2
9+
github.com/multiversx/mx-chain-go v1.11.8
1010
github.com/multiversx/mx-chain-logger-go v1.1.0
11-
github.com/multiversx/mx-chain-proxy-go v1.3.1
11+
github.com/multiversx/mx-chain-proxy-go v1.3.4
1212
github.com/pelletier/go-toml v1.9.3
1313
github.com/stretchr/testify v1.10.0
1414
github.com/urfave/cli v1.22.16
@@ -118,12 +118,12 @@ require (
118118
github.com/multiformats/go-multistream v0.6.0 // indirect
119119
github.com/multiformats/go-varint v0.0.7 // indirect
120120
github.com/multiversx/concurrent-map v0.1.4 // indirect
121-
github.com/multiversx/mx-chain-communication-go v1.3.0 // indirect
121+
github.com/multiversx/mx-chain-communication-go v1.3.2 // indirect
122122
github.com/multiversx/mx-chain-crypto-go v1.3.0 // indirect
123-
github.com/multiversx/mx-chain-es-indexer-go v1.9.2 // indirect
123+
github.com/multiversx/mx-chain-es-indexer-go v1.9.3 // indirect
124124
github.com/multiversx/mx-chain-scenario-go v1.6.0 // indirect
125-
github.com/multiversx/mx-chain-storage-go v1.1.0 // indirect
126-
github.com/multiversx/mx-chain-vm-common-go v1.6.0 // indirect
125+
github.com/multiversx/mx-chain-storage-go v1.1.1 // indirect
126+
github.com/multiversx/mx-chain-vm-common-go v1.6.7 // indirect
127127
github.com/multiversx/mx-chain-vm-go v1.6.1-0.20250707105646-d7048a2657c2 // indirect
128128
github.com/multiversx/mx-chain-vm-v1_2-go v1.2.69 // indirect
129129
github.com/multiversx/mx-chain-vm-v1_3-go v1.3.70 // indirect

go.sum

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -408,26 +408,26 @@ github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/n
408408
github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU=
409409
github.com/multiversx/concurrent-map v0.1.4 h1:hdnbM8VE4b0KYJaGY5yJS2aNIW9TFFsUYwbO0993uPI=
410410
github.com/multiversx/concurrent-map v0.1.4/go.mod h1:8cWFRJDOrWHOTNSqgYCUvwT7c7eFQ4U2vKMOp4A/9+o=
411-
github.com/multiversx/mx-chain-communication-go v1.3.0 h1:ziNM1dRuiR/7al2L/jGEA/a/hjurtJ/HEqgazHNt9P8=
412-
github.com/multiversx/mx-chain-communication-go v1.3.0/go.mod h1:gDVWn6zUW6aCN1YOm/FbbT5MUmhgn/L1Rmpl8EoH3Yg=
413-
github.com/multiversx/mx-chain-core-go v1.4.1 h1:ljs53jpdjtCohpaqm2n/dvTGrFlSgIpoZYH8RVt5cWo=
414-
github.com/multiversx/mx-chain-core-go v1.4.1/go.mod h1:IO+vspNan+gT0WOHnJ95uvWygiziHZvfXpff6KnxV7g=
411+
github.com/multiversx/mx-chain-communication-go v1.3.2 h1:LXz6mjo9hb9X9BIcMFWgJlDVhG8uB2GQWzefSwQAHc0=
412+
github.com/multiversx/mx-chain-communication-go v1.3.2/go.mod h1:gDVWn6zUW6aCN1YOm/FbbT5MUmhgn/L1Rmpl8EoH3Yg=
413+
github.com/multiversx/mx-chain-core-go v1.4.2 h1:/2I0ldOc9Y6zWSG1qzJ9nfdEKk5Spwhi2fKWv0tCFMU=
414+
github.com/multiversx/mx-chain-core-go v1.4.2/go.mod h1:IO+vspNan+gT0WOHnJ95uvWygiziHZvfXpff6KnxV7g=
415415
github.com/multiversx/mx-chain-crypto-go v1.3.0 h1:0eK2bkDOMi8VbSPrB1/vGJSYT81IBtfL4zw+C4sWe/k=
416416
github.com/multiversx/mx-chain-crypto-go v1.3.0/go.mod h1:nPIkxxzyTP8IquWKds+22Q2OJ9W7LtusC7cAosz7ojM=
417-
github.com/multiversx/mx-chain-es-indexer-go v1.9.2 h1:/K/cpTkwlFJ7zOD8VRhgc6ixi1t/3ua8CLl63LWHjvE=
418-
github.com/multiversx/mx-chain-es-indexer-go v1.9.2/go.mod h1:t1rkD2vHXSI4EClig0h7+kRCSUCRrMF+emr4DHxFtfA=
419-
github.com/multiversx/mx-chain-go v1.11.1 h1:PC2cP10LEmfL18yMyfsMu0usTxa/ttXNQyi3BIVsuwM=
420-
github.com/multiversx/mx-chain-go v1.11.1/go.mod h1:7c9Qvi3lvE0wuHP/xTxbjs1GvTO/7W4NGmzT9IDsJCM=
417+
github.com/multiversx/mx-chain-es-indexer-go v1.9.3 h1:mtc4jxbFoURpF+UmOjD1/cc4XBGh4WyKGduOV4BCGBQ=
418+
github.com/multiversx/mx-chain-es-indexer-go v1.9.3/go.mod h1:dXRu2fmdiLFOcaRA34axQfoUcq8p9NUGqr4+9dN+p0Y=
419+
github.com/multiversx/mx-chain-go v1.11.8 h1:jpTegQ7Q5+c7JC4jtLz1j/TZqb2KyCG/BgCUOGvplJ8=
420+
github.com/multiversx/mx-chain-go v1.11.8/go.mod h1:5QtroufYt41neTENud+jsHHn/OPLCSHZ3wRNylExcfo=
421421
github.com/multiversx/mx-chain-logger-go v1.1.0 h1:97x84A6L4RfCa6YOx1HpAFxZp1cf/WI0Qh112whgZNM=
422422
github.com/multiversx/mx-chain-logger-go v1.1.0/go.mod h1:K9XgiohLwOsNACETMNL0LItJMREuEvTH6NsoXWXWg7g=
423-
github.com/multiversx/mx-chain-proxy-go v1.3.1 h1:tjbTm3FpR0bjDvWAMK0zwRxRbbjGszSWltng7jv6CIg=
424-
github.com/multiversx/mx-chain-proxy-go v1.3.1/go.mod h1:cHuW0HW8ygFhnXENyBYHiVSWmK17uheAUjglNNgTTpc=
423+
github.com/multiversx/mx-chain-proxy-go v1.3.4 h1:cmdVOnY8bP9KekL/BAar3bQ99QBpcOTShDap1ZnLo/s=
424+
github.com/multiversx/mx-chain-proxy-go v1.3.4/go.mod h1:cHuW0HW8ygFhnXENyBYHiVSWmK17uheAUjglNNgTTpc=
425425
github.com/multiversx/mx-chain-scenario-go v1.6.0 h1:cwDFuS1pSc4YXnfiKKDTEb+QDY4fulPQaiRgIebnKxI=
426426
github.com/multiversx/mx-chain-scenario-go v1.6.0/go.mod h1:GrSYu1SnMvsIm9djUz1X13224HcvdY6Nb5KHNT3xZPA=
427-
github.com/multiversx/mx-chain-storage-go v1.1.0 h1:M1Y9DqMrJ62s7Zw31+cyuqsnPIvlG4jLBJl5WzeZLe8=
428-
github.com/multiversx/mx-chain-storage-go v1.1.0/go.mod h1:o6Jm7cjfPmcc6XpyihYWrd6sx3sgqwurrunw3ZrfyxI=
429-
github.com/multiversx/mx-chain-vm-common-go v1.6.0 h1:M2zmf/ptEINciWxYCPLIkwOMTvvzWjELYYB+0MMQ5Gw=
430-
github.com/multiversx/mx-chain-vm-common-go v1.6.0/go.mod h1:Lc7r4VDPYRDS0CVIaWAoLtf3YQn6PZEYHv4QtaOE2Z0=
427+
github.com/multiversx/mx-chain-storage-go v1.1.1 h1:Ko29uUNSRCxqkl3l8+4aIy4BKGi+k6wv8h11SxcXWyY=
428+
github.com/multiversx/mx-chain-storage-go v1.1.1/go.mod h1:o6Jm7cjfPmcc6XpyihYWrd6sx3sgqwurrunw3ZrfyxI=
429+
github.com/multiversx/mx-chain-vm-common-go v1.6.7 h1:oX2/RMXdhqUkJSebK+cosknBjNBX0DFAEDR6ZqNTN80=
430+
github.com/multiversx/mx-chain-vm-common-go v1.6.7/go.mod h1:Lc7r4VDPYRDS0CVIaWAoLtf3YQn6PZEYHv4QtaOE2Z0=
431431
github.com/multiversx/mx-chain-vm-go v1.6.1-0.20250707105646-d7048a2657c2 h1:mWerES8Wk3a9NJVgsjG7d39o3IHtT5AX4uR3Znbzd8k=
432432
github.com/multiversx/mx-chain-vm-go v1.6.1-0.20250707105646-d7048a2657c2/go.mod h1:Qc2Sckw+EfQwnapkzghFfhuUAOGv29oSZgvj8LJ+xWQ=
433433
github.com/multiversx/mx-chain-vm-v1_2-go v1.2.69 h1:5gSR3IMw1mcp/v5oO+vZ5YOyWO8w7O2qKhCKNPwsWNE=

0 commit comments

Comments
 (0)