Skip to content

Commit

Permalink
Include standalone network passphrase (#555)
Browse files Browse the repository at this point in the history
* Add STANDALONE network passphrase

* bump version
  • Loading branch information
Paul Bellamy committed Feb 2, 2023
1 parent f2e7fe5 commit 2e464fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stellar-base",
"version": "8.2.2-soroban.2",
"version": "8.2.2-soroban.3",
"description": "Low level stellar support library",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ export const Networks = {
PUBLIC: 'Public Global Stellar Network ; September 2015',
TESTNET: 'Test SDF Network ; September 2015',
FUTURENET: 'Test SDF Future Network ; October 2022',
SANDBOX: 'Local Sandbox Stellar Network ; September 2022'
SANDBOX: 'Local Sandbox Stellar Network ; September 2022',
STANDALONE: 'Standalone Network ; February 2017'
};
3 changes: 2 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ export enum Networks {
PUBLIC = 'Public Global Stellar Network ; September 2015',
TESTNET = 'Test SDF Network ; September 2015',
FUTURENET = 'Test SDF Future Network ; October 2022',
SANDBOX = 'Local Sandbox Stellar Network ; September 2022'
SANDBOX = 'Local Sandbox Stellar Network ; September 2022',
STANDALONE = 'Standalone Network ; February 2017'
}

export const AuthRequiredFlag: 1;
Expand Down

0 comments on commit 2e464fa

Please sign in to comment.