-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat(example): add interchain-token-service #149
base: main
Are you sure you want to change the base?
Conversation
d843463
to
a486502
Compare
#[data] | ||
pub token_id: BytesN<32>, | ||
#[data] | ||
pub token_address: Address, | ||
#[data] | ||
pub amount: i128, |
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.
Stellar has no limit on number or size of topics, so these 3 can go inside topics
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.
This was not a topic-related concern, but rather just a test of > 1 data
field. It did result in a bug, which this PR patches (the macro was not properly passing multiple data field attributes to publish
)
env: Env, | ||
gateway: Address, | ||
gas_service: Address, | ||
interchain_token_service: Address, |
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.
Note that this requires to change the deployment script: https://github.com/axelarnetwork/axelar-contract-deployments/blob/main/stellar/deploy-contract.js#L89-L93
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.
5c50723
to
a4a1a9b
Compare
AXE-7105