Skip to content

Commit 14aced8

Browse files
committed
fix erdpy contract templates
1 parent 876ebce commit 14aced8

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

erdpy/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def get_defaults() -> Dict[str, Any]:
153153
"chainID": "T",
154154
"txVersion": "1",
155155
"dependencies.vmtools.tag": "latest",
156-
"dependencies.elrond_wasm_rs.tag": "latest",
156+
"dependencies.mx_sdk_rs.tag": "latest",
157157
"dependencies.vmtools.urlTemplate.linux": "https://github.com/ElrondNetwork/wasm-vm/archive/{TAG}.tar.gz",
158158
"dependencies.vmtools.urlTemplate.osx": "https://github.com/ElrondNetwork/wasm-vm/archive/{TAG}.tar.gz",
159159
"dependencies.llvm.tag": "v9-19feb",

erdpy/projects/templates_config.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@
77

88
def get_templates_repositories():
99
timestamp = int(time.time())
10-
examples_rs_tag = config.get_dependency_tag('elrond_wasm_rs')
10+
examples_rs_tag = config.get_dependency_tag('mx_sdk_rs')
1111

1212
if examples_rs_tag == 'latest':
13-
examples_rs_tag = query_latest_release_tag('ElrondNetwork/elrond-wasm-rs')
13+
examples_rs_tag = query_latest_release_tag('multiversx/mx-sdk-rs')
1414

1515
examples_rs_tag_no_v = remove_initial_v_from_version(examples_rs_tag)
1616

1717
return [
1818
TemplatesRepository(
1919
key="sc-examples",
20-
url=f"https://github.com/ElrondNetwork/sc-examples/archive/master.zip?t={timestamp}",
21-
github="ElrondNetwork/sc-examples",
22-
relative_path="sc-examples-master"
20+
url=f"https://github.com/multiversx/mx-sc-examples/archive/master.zip?t={timestamp}",
21+
github="multiversx/mx-sc-examples",
22+
relative_path="mx-sc-examples-master"
2323
),
2424

2525
TemplatesRepository(
26-
key="elrond-wasm-rs",
27-
url=f"https://github.com/ElrondNetwork/elrond-wasm-rs/archive/{examples_rs_tag}.zip?t={timestamp}",
28-
github="ElrondNetwork/elrond-wasm-rs",
26+
key="mx-sdk-rs",
27+
url=f"https://github.com/multiversx/mx-sdk-rs/archive/{examples_rs_tag}.zip?t={timestamp}",
28+
github="multiversx/mx-sdk-rs",
2929
relative_path=f"mx-sdk-rs-{examples_rs_tag_no_v}/contracts/examples"
3030
)
3131
]

0 commit comments

Comments
 (0)