Skip to content

Commit

Permalink
update friendbot url in soroban test
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Nov 23, 2023
1 parent 2e6173f commit 2ccec79
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.7.0] - 23.Nov.2023.
- improve status code 429 handling
- fix soroban simulate tx response parsing
- fix a soroban test case

## [1.6.9] - 30.Oct.2023.
- improve sep-24 support

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The Soneso open source Stellar SDK for Flutter is build with Dart and provides A
1. Add the dependency to your pubspec.yaml file:
```
dependencies:
stellar_flutter_sdk: ^1.6.9
stellar_flutter_sdk: ^1.7.0
```
2. Install it (command line or IDE):
```
Expand Down
2 changes: 1 addition & 1 deletion lib/src/stellar_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import 'requests/liquidity_pools_request_builder.dart';

/// Main class of the flutter stellar sdk.
class StellarSDK {
static const versionNumber = "1.6.9";
static const versionNumber = "1.7.0";

static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org");
static final StellarSDK TESTNET = StellarSDK("https://horizon-testnet.stellar.org");
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stellar_flutter_sdk
description: A stellar blockchain sdk that query's horizon, build, signs and submits transactions to the stellar network.
version: 1.6.9
version: 1.7.0
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down
2 changes: 1 addition & 1 deletion test/soroban_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ void main() {
GetNetworkResponse networkResponse = await sorobanServer.getNetwork();

assert(!networkResponse.isErrorResponse);
assert("https://friendbot-testnet.stellar.org/" ==
assert("https://friendbot.stellar.org/" ==
networkResponse.friendbotUrl);
assert("Test SDF Network ; September 2015" ==
networkResponse.passphrase);
Expand Down

0 comments on commit 2ccec79

Please sign in to comment.