Skip to content

Commit

Permalink
Merge pull request #826 from dfinity/fix/demo-identity-name
Browse files Browse the repository at this point in the history
🩹 forcing identity creation
  • Loading branch information
letmejustputthishere authored Apr 2, 2024
2 parents b06924f + 7b87c90 commit d451510
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion motoko/icp_transfer/demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trap 'dfx stop' EXIT

echo "===========SETUP========="
dfx start --background --clean
dfx identity new alice --storage-mode plaintext
dfx identity new alice_icp_transfer --storage-mode plaintext --force
export MINTER_ACCOUNT_ID=$(dfx --identity anonymous ledger account-id)
export DEFAULT_ACCOUNT_ID=$(dfx ledger account-id)
dfx deploy icp_ledger_canister --argument "
Expand Down
2 changes: 1 addition & 1 deletion motoko/token_transfer/demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trap 'dfx stop' EXIT

echo "===========SETUP========="
dfx start --background --clean
dfx identity new alice --storage-mode plaintext
dfx identity new alice_token_transfer --storage-mode plaintext --force
export MINTER=$(dfx --identity anonymous identity get-principal)
export DEFAULT=$(dfx identity get-principal)
dfx deploy icrc1_ledger_canister --argument "(variant { Init =
Expand Down
2 changes: 1 addition & 1 deletion rust/icp_transfer/demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trap 'dfx stop' EXIT

echo "===========SETUP========="
dfx start --background --clean
dfx identity new alice --storage-mode plaintext
dfx identity new alice_icp_transfer --storage-mode plaintext --force
export MINTER_ACCOUNT_ID=$(dfx --identity anonymous ledger account-id)
export DEFAULT_ACCOUNT_ID=$(dfx ledger account-id)
dfx deploy icp_ledger_canister --argument "
Expand Down
2 changes: 1 addition & 1 deletion rust/token_transfer/demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dfx stop

echo "===========SETUP========="
dfx start --background --clean
dfx identity new alice --storage-mode plaintext
dfx identity new alice_token_transfer --storage-mode plaintext --force
export MINTER=$(dfx --identity anonymous identity get-principal)
export DEFAULT=$(dfx identity get-principal)
dfx deploy icrc1_ledger_canister --argument "(variant { Init =
Expand Down

0 comments on commit d451510

Please sign in to comment.