-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate Soroban Domain #9
Merged
+75
−10
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
BIN
+23.8 KB
contracts/domain_3ebbeec072f4996958d4318656186732773ab5f0c159dcf039be202b4ecb8af8.wasm
Binary file not shown.
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,17 +1,56 @@ | ||
#![cfg(test)] | ||
|
||
use super::{ContractErrors, Versioning, VersioningClient}; | ||
use super::{ContractErrors, Versioning, VersioningClient, CONTRACT_DOMAIN_ID}; | ||
use soroban_sdk::testutils::Address as _; | ||
use soroban_sdk::{symbol_short, testutils::Events, vec, Address, Bytes, Env, IntoVal, String}; | ||
use soroban_sdk::{ | ||
symbol_short, testutils::Events, token, vec, Address, Bytes, Env, IntoVal, String, Vec, | ||
}; | ||
// use soroban_sdk::testutils::arbitrary::std::println; | ||
|
||
mod contract_domain { | ||
soroban_sdk::contractimport!( | ||
file = "../domain_3ebbeec072f4996958d4318656186732773ab5f0c159dcf039be202b4ecb8af8.wasm" | ||
); | ||
} | ||
|
||
#[test] | ||
fn test() { | ||
let env = Env::default(); | ||
env.mock_all_auths(); | ||
|
||
let contract_admin = Address::generate(&env); | ||
// setup for Soroban Domain | ||
let contract_domain_id_str = String::from_str(&env, CONTRACT_DOMAIN_ID); | ||
let contract_domain_id = Address::from_string(&contract_domain_id_str); | ||
env.register_contract_wasm(&contract_domain_id, contract_domain::WASM); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Registering here with the same address as mainnet |
||
let contract_domain = contract_domain::Client::new(&env, &contract_domain_id); | ||
|
||
let adm: Address = Address::generate(&env); | ||
let node_rate: u128 = 100; | ||
let min_duration: u64 = 31536000; | ||
let allowed_tlds: Vec<Bytes> = Vec::from_array( | ||
&env, | ||
[ | ||
Bytes::from_slice(&env, "xlm".as_bytes()), | ||
Bytes::from_slice(&env, "stellar".as_bytes()), | ||
Bytes::from_slice(&env, "wallet".as_bytes()), | ||
Bytes::from_slice(&env, "dao".as_bytes()), | ||
], | ||
); | ||
let issuer: Address = Address::generate(&env); | ||
let token_address = env.register_stellar_asset_contract(issuer.clone()); | ||
let col_asset_client = token::TokenClient::new(&env, &token_address); | ||
let col_asset_stellar = token::StellarAssetClient::new(&env, &token_address); | ||
|
||
contract_domain.init( | ||
&adm, | ||
&node_rate, | ||
&col_asset_client.address.clone(), | ||
&min_duration, | ||
&allowed_tlds, | ||
); | ||
|
||
// setup for Tansu | ||
let contract_admin = Address::generate(&env); | ||
let contract_id = env.register_contract(None, Versioning); | ||
let contract = VersioningClient::new(&env, &contract_id); | ||
|
||
|
@@ -24,6 +63,9 @@ fn test() { | |
let mando = Address::generate(&env); | ||
let maintainers = vec![&env, grogu.clone(), mando.clone()]; | ||
|
||
let genesis_amount: i128 = 1_000_000_000 * 10_000_000; | ||
col_asset_stellar.mint(&grogu, &genesis_amount); | ||
|
||
let id = contract.register(&grogu, &name, &maintainers, &url, &hash); | ||
|
||
let expected_id = [ | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@earrietadev hi 👋 if you have time, could you help us out here? I am getting a failure calling Soroban Domain's contract here and I don't understand the backtrace. Thanks in advance!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tupui doing a quick review, one thing I noticed is that you're hashing the domain before passing it to the contract so you need to make sure the value is not higher than the limit which is 15 digits. Also the last value you're passing is a i32 but the contract is expecting a u64
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks I really appreciate 🙏 I will try this out!