-
Notifications
You must be signed in to change notification settings - Fork 11
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
test: add liquid assets script to test network #312
Merged
Merged
Changes from all commits
Commits
Show all changes
2 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
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 |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
import { ApiPromise, WsProvider } from '@polkadot/api'; | ||
import { Keyring } from '@polkadot/keyring'; | ||
import { KeyringPair } from '@polkadot/keyring/types'; | ||
import { cryptoWaitReady } from '@polkadot/util-crypto'; | ||
import chalk from 'chalk'; | ||
|
||
import { KUSAMA_ASSET_HUB_WS_URL } from './consts'; | ||
import { awaitBlockProduction, delay, logWithDate } from './util'; | ||
|
||
const ASSET_ID = 1; | ||
const ASSET_NAME = 'Testy'; | ||
const ASSET_TICKER = 'TSTY'; | ||
const ASSET_DECIMALS = 12; | ||
const ASSET_MIN = 1; | ||
|
||
const asset = { | ||
parents: 0, | ||
interior: { | ||
X2: [{ palletInstance: 50 }, { generalIndex: ASSET_ID }], | ||
}, | ||
}; | ||
|
||
const native = { | ||
parents: 1, | ||
interior: { | ||
Here: '', | ||
}, | ||
}; | ||
|
||
const createAssetCall = (api: ApiPromise, admin: KeyringPair) => { | ||
return api.tx.assets.create(ASSET_ID, admin.address, ASSET_MIN); | ||
}; | ||
|
||
const setMetadataCall = (api: ApiPromise) => { | ||
return api.tx.assets.setMetadata(ASSET_ID, ASSET_NAME, ASSET_TICKER, ASSET_DECIMALS); | ||
}; | ||
|
||
const mintCall = (api: ApiPromise, to: KeyringPair, amount: number) => { | ||
return api.tx.assets.mint(ASSET_ID, to.address, amount); | ||
}; | ||
|
||
const createLiquidityPoolCall = (api: ApiPromise) => { | ||
// For now, we have to override the types of the Assets until PJS is updated | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument | ||
return api.tx.assetConversion.createPool(<any>native, <any>asset); | ||
Check warning on line 47 in scripts/testNetworkLiquidAssets.ts GitHub Actions / lint
|
||
}; | ||
|
||
const addLiquidityCall = (api: ApiPromise, amountNative: number, amountAsset: number, to: KeyringPair) => { | ||
// For now, we have to override the types of the Assets until PJS is updated | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument | ||
return api.tx.assetConversion.addLiquidity(<any>native, <any>asset, amountNative, amountAsset, 0, 0, to.address); | ||
Check warning on line 53 in scripts/testNetworkLiquidAssets.ts GitHub Actions / lint
|
||
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. Same with this, totally fine. |
||
}; | ||
|
||
const transferLPTokensCall = (api: ApiPromise, token: number, amount: number, to: KeyringPair) => { | ||
return api.tx.poolAssets.transferKeepAlive(token, to.address, amount); | ||
}; | ||
|
||
const main = async () => { | ||
logWithDate(chalk.yellow('Initializing script to create a liquidity pool on Kusama Asset Hub')); | ||
await cryptoWaitReady(); | ||
|
||
const keyring = new Keyring({ type: 'sr25519' }); | ||
const alice = keyring.addFromUri('//Alice'); | ||
const bob = keyring.addFromUri('//Bob'); | ||
|
||
const api = await ApiPromise.create({ | ||
provider: new WsProvider(KUSAMA_ASSET_HUB_WS_URL), | ||
noInitWarn: true, | ||
}); | ||
|
||
await api.isReady; | ||
|
||
logWithDate(chalk.green('Created a connection to Kusama AssetHub')); | ||
|
||
const txs = []; | ||
const create = createAssetCall(api, alice); | ||
const setMetadata = setMetadataCall(api); | ||
const mint = mintCall(api, alice, 10000000000000); | ||
const createPool = createLiquidityPoolCall(api); | ||
const addLiquidity = addLiquidityCall(api, 10000000000000, 10000000000000, alice); | ||
|
||
txs.push(create); | ||
txs.push(setMetadata); | ||
txs.push(mint); | ||
txs.push(createPool); | ||
txs.push(addLiquidity); | ||
|
||
await api.tx.utility.batch(txs).signAndSend(alice); | ||
|
||
await delay(24000); | ||
|
||
const nextLpToken = await api.query.assetConversion.nextPoolAssetId(); | ||
|
||
const lpToken = Number(nextLpToken) - 1; | ||
|
||
logWithDate(chalk.yellow('Asset and Liquidity Pool created')); | ||
|
||
logWithDate(chalk.green(`Liquidity Pool Token ID: ${lpToken}`)); | ||
|
||
const startingBalances = await api.query.poolAssets.account.entries(lpToken); | ||
|
||
startingBalances.slice(1).forEach( | ||
([ | ||
{ | ||
args: [lpToken, address], | ||
}, | ||
value, | ||
]) => { | ||
logWithDate( | ||
chalk.blue( | ||
`LP Token: ${Number(lpToken)}, Account: ${address.toString()}, Starting liquidty token balance: ${value | ||
.unwrap() | ||
.balance.toHuman()}` | ||
) | ||
); | ||
} | ||
); | ||
|
||
await delay(24000); | ||
|
||
logWithDate(chalk.magenta('Sending 1,000,000,000,000 lpTokens from Alice to Bob on Kusama Asset Hub')); | ||
|
||
await transferLPTokensCall(api, 0, 1000000000000, bob).signAndSend(alice); | ||
|
||
await delay(24000); | ||
|
||
const newBalances = await api.query.poolAssets.account.entries(lpToken); | ||
newBalances.slice(1).forEach( | ||
([ | ||
{ | ||
args: [lpToken, address], | ||
}, | ||
value, | ||
]) => { | ||
logWithDate( | ||
chalk.blue( | ||
`LP Token: ${Number(lpToken)}, Account: ${address.toString()}, New liquidty token balance: ${value | ||
.unwrap() | ||
.balance.toHuman()}` | ||
) | ||
); | ||
} | ||
); | ||
|
||
await api.disconnect().then(() => { | ||
logWithDate(chalk.yellow('Polkadot-js successfully disconnected from asset-hub')); | ||
}); | ||
}; | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-floating-promises | ||
awaitBlockProduction(KUSAMA_ASSET_HUB_WS_URL).then(async () => { | ||
await main() | ||
.catch(console.error) | ||
.finally(() => process.exit()); | ||
}); |
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.
This is totally fine with me. I double checked the ts compilter issue happening with PJs and this is the right approach.