Skip to content

Commit

Permalink
feat: completed multidimensional partial
Browse files Browse the repository at this point in the history
  • Loading branch information
anegg0 committed Apr 25, 2024
1 parent 1ab2454 commit 48262d6
Showing 1 changed file with 100 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,41 +33,115 @@ import DeployTokenBrigePartial from './_deploy-token-brige-partial.mdx';

import DeployCustomTokenBrigePartial from './_deploy-custom-token-brige-partial.mdx';

<div className='dynamic-content-tabs'>
<div className='dynamic-content-tabs-toc'>
<Tabs className="tabgroup-with-label" defaultValue="rollup-chain" groupId="chain-type" values={[
{label: 'Chain type:', value: 'label'},
{label: 'Rollup chain', value: 'rollup-chain'},
{label: 'AnyTrust chain', value: 'anytrust-chain'},
{label: 'Custom token chain', value: 'custom-token-chain'}
]}>
<TabItem className="unclickable-element" value="label"></TabItem>
<TabItem value="rollup-chain" label="Rollup chain">
<InfoRollupChainPartial />
<PrepareConfigParameterForRollupPartial />
<SendOrbitChainDeploymentTransactionPartial />
<GetDeployedChainInfoPartial />
<ConfigRollupNodePartial />
<DeployTokenBrigePartial />
<div className='dynamic-content-tabs-toc'>
<Tabs className="tabgroup-with-label" defaultValue="1" groupId="rollup" values={[
{label: 'Chain type info', value: '1'},
{label: 'Prepare config', value: '2'},
{label: 'Deploy chain', value: '3'},
{label: 'Get chain info', value: '4'},
{label: 'Configure node', value: '5'},
{label: 'Deploy token bridge', value: '6'},
]}>
<TabItem value="1" label="Chain type info">
<InfoRollupChainPartial/>
</TabItem>
<TabItem value="2" label="Prepare config">
<PrepareConfigParameterForRollupPartial />
</TabItem>
<TabItem value="3" label="Deploy chain">
<SendOrbitChainDeploymentTransactionPartial />
</TabItem>
<TabItem value="4" label="Get chain info">
<GetDeployedChainInfoPartial />
</TabItem>
<TabItem value="5" label="Configure node">
<ConfigRollupNodePartial />
</TabItem>
<TabItem value="6" label="Deploy token bridge">
<DeployTokenBrigePartial />
</TabItem>
</Tabs>
</div>
</TabItem>
<TabItem value="anytrust-chain" label="AnyTrust chain">
<InfoAnytrustChainPartial />
<PrepareConfigParameterForAnyTrustPartial />
<SendOrbitChainDeploymentTransactionPartial />
<GetDeployedChainInfoPartial />
<SetDacKeysetPartial />
<ConfigAnytrustNodePartial />
<DeployTokenBrigePartial />
<div className='dynamic-content-tabs-toc'>
<Tabs className="tabgroup-with-label" defaultValue="1" groupId="rollup" values={[
{label: 'Chain type info', value: '1'},
{label: 'Prepare config', value: '2'},
{label: 'Deploy chain', value: '3'},
{label: 'Get chain info', value: '4'},
{label: 'Set DAC keyset', value: '5'},
{label: 'Configure node', value: '6'},
{label: 'Deploy token bridge', value: '7'},
]}>
<TabItem value="1" label="Chain type info">
<InfoAnytrustChainPartial />
</TabItem>
<TabItem value="2" label="Prepare config">
<PrepareConfigParameterForAnyTrustPartial />
</TabItem>
<TabItem value="3" label="Deploy chain">
<SendOrbitChainDeploymentTransactionPartial />
</TabItem>
<TabItem value="4" label="Get chain info">
<GetDeployedChainInfoPartial />
</TabItem>
<TabItem value="5" label="Set DAC keyset">
<SetDacKeysetPartial />
</TabItem>
<TabItem value="6" label="Configure node">
<ConfigAnytrustNodePartial />
</TabItem>
<TabItem value="7" label="Deploy token bridge">
<DeployTokenBrigePartial />
</TabItem>
</Tabs>
</div>
</TabItem>
<TabItem value="custom-token-chain" label="Custom token chain">
<InfoCustomTokenChainPartial />
<PrepareConfigParameterForAnyTrustPartial />
<ApproveErc20TokenPartial />
<SendOrbitChainDeploymentTransactionPartial />
<GetDeployedChainInfoPartial />
<SetDacKeysetPartial />
<ConfigAnytrustNodePartial />
<DeployCustomTokenBrigePartial />
<TabItem value="anytrust-chain" label="AnyTrust chain">
<div className='dynamic-content-tabs-toc'>
<Tabs className="tabgroup-with-label" defaultValue="1" groupId="rollup" values={[
{label: 'Chain type info', value: '1'},
{label: 'Prepare config', value: '2'},
{label: 'Approve token', value: '3'},
{label: 'Deploy chain', value: '4'},
{label: 'Get chain info', value: '5'},
{label: 'Configure node', value: '6'},
{label: 'Deploy token bridge', value: '7'},
]}>
<TabItem value="1" label="Chain type info">
<InfoCustomTokenChainPartial />
</TabItem>
<TabItem value="2" label="Prepare config">
<PrepareConfigParameterForAnyTrustPartial />
</TabItem>
<TabItem value="3" label="Approve token">
<ApproveErc20TokenPartial />
</TabItem>
<TabItem value="4" label="Deploy chain">
<SendOrbitChainDeploymentTransactionPartial />
</TabItem>
<TabItem value="5" label="Get chain info">
<GetDeployedChainInfoPartial />
</TabItem>
<TabItem value="6" label="Configure node">
<SetDacKeysetPartial />
</TabItem>
<TabItem value="7" label="Configure node">
<ConfigAnytrustNodePartial />
</TabItem>
<TabItem value="8" label="Deploy token bridge">
<DeployTokenBrigePartial />
</TabItem>
</Tabs>
</div>
</TabItem>
</Tabs>
</div>

0 comments on commit 48262d6

Please sign in to comment.