-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.0.0: Refactor
Transaction
class (#854)
- Loading branch information
1 parent
2a25f7a
commit 4184324
Showing
90 changed files
with
5,299 additions
and
5,807 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ version: 2.1 | |
orbs: | ||
node: circleci/[email protected] | ||
slack: circleci/[email protected] | ||
browser-tools: circleci/[email protected].3 | ||
browser-tools: circleci/[email protected].6 | ||
gh-pages: sugarshin/[email protected] | ||
|
||
parameters: | ||
|
@@ -89,7 +89,8 @@ jobs: | |
$(lsb_release -cs) stable" | $SUDO tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
$SUDO apt update | ||
$SUDO apt -y install docker-ce docker-ce-cli containerd.io | ||
- browser-tools/install-browser-tools | ||
- browser-tools/install-browser-tools: | ||
replace-existing-chrome: true | ||
- run: | ||
name: << parameters.browser >> test | ||
command: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import * as nacl from './nacl/naclWrappers.js'; | ||
import * as address from './encoding/address.js'; | ||
import { Address } from './encoding/address.js'; | ||
import Account from './types/account.js'; | ||
|
||
/** | ||
* generateAccount returns a new Algorand address and its corresponding secret key | ||
*/ | ||
export default function generateAccount(): Account { | ||
const keys = nacl.keyPair(); | ||
const encodedPk = address.encodeAddress(keys.publicKey); | ||
return { addr: encodedPk, sk: keys.secretKey }; | ||
const addr = new Address(keys.publicKey); | ||
return { addr, sk: keys.secretKey }; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.