Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fd81cba

Browse files
author
Manish
committedNov 9, 2022
feat(deployment): add chain specific script placeholders (#775)
1 parent 9843775 commit fd81cba

Some content is hidden

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

68 files changed

+428
-0
lines changed
 

‎provisioning/chains/bsc/bmc/deploy.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
source ../../evm/bmc/deploy.sh
4+
5+
function bsc_deploy_bmc() {
6+
evm_deploy_bmc $args
7+
}
8+
9+
function bsc_extract_bmc_management_address() {
10+
bsc_extract_bmc_management_address $args
11+
}
12+
13+
function bsc_extract_bmc_periphery_address() {
14+
evm_extract_bmc_management_address $args
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
source ../../evm/bmc/helpers/add_rm_bsh.sh
4+
5+
function bsc_add_service() {
6+
evm_add_service $args
7+
}
8+
9+
function bsc_remove_service() {
10+
evm_remove_service $args
11+
}

0 commit comments

Comments
 (0)
Please sign in to comment.