Skip to content

Commit

Permalink
chore: updated to new prerelease version
Browse files Browse the repository at this point in the history
  • Loading branch information
mangatafinance committed Feb 7, 2024
1 parent 377fd1f commit 554ef05
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mangata-repo
Submodule mangata-repo updated from 01f57a to b6d9db
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/types/metadata.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mangata-finance/types",
"version": "2.0.1-develop.20",
"version": "2.0.1-develop.21",
"description": "Polkadot.js type definitions for Mangata Network",
"author": "Mangata Finance <[email protected]>",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/types/src/interfaces/augment-api-tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ declare module '@polkadot/api-base/types/submittable' {
/**
* See [`Pallet::associate_native_identity`].
**/
associateNativeIdentity: AugmentedSubmittable<(rewardAccount: AccountId32 | string | Uint8Array, relayAccount: AccountId32 | string | Uint8Array, proof: SpRuntimeMultiSignature | { Ed25519: any } | { Sr25519: any } | { Ecdsa: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, AccountId32, SpRuntimeMultiSignature]>;
associateNativeIdentity: AugmentedSubmittable<(rewardAccount: AccountId32 | string | Uint8Array, relayAccount: AccountId32 | string | Uint8Array, proof: SpRuntimeMultiSignature | { Ed25519: any } | { Sr25519: any } | { Ecdsa: any } | { Eth: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, AccountId32, SpRuntimeMultiSignature]>;
/**
* See [`Pallet::change_association_with_relay_keys`].
**/
changeAssociationWithRelayKeys: AugmentedSubmittable<(rewardAccount: AccountId32 | string | Uint8Array, previousAccount: AccountId32 | string | Uint8Array, proofs: Vec<ITuple<[AccountId32, SpRuntimeMultiSignature]>> | ([AccountId32 | string | Uint8Array, SpRuntimeMultiSignature | { Ed25519: any } | { Sr25519: any } | { Ecdsa: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [AccountId32, AccountId32, Vec<ITuple<[AccountId32, SpRuntimeMultiSignature]>>]>;
changeAssociationWithRelayKeys: AugmentedSubmittable<(rewardAccount: AccountId32 | string | Uint8Array, previousAccount: AccountId32 | string | Uint8Array, proofs: Vec<ITuple<[AccountId32, SpRuntimeMultiSignature]>> | ([AccountId32 | string | Uint8Array, SpRuntimeMultiSignature | { Ed25519: any } | { Sr25519: any } | { Ecdsa: any } | { Eth: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [AccountId32, AccountId32, Vec<ITuple<[AccountId32, SpRuntimeMultiSignature]>>]>;
/**
* See [`Pallet::claim`].
**/
Expand Down
3 changes: 2 additions & 1 deletion packages/types/src/interfaces/lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2333,7 +2333,8 @@ export default {
_enum: {
Ed25519: 'SpCoreEd25519Signature',
Sr25519: 'SpCoreSr25519Signature',
Ecdsa: 'SpCoreEcdsaSignature'
Ecdsa: 'SpCoreEcdsaSignature',
Eth: 'SpCoreEcdsaSignature'
}
},
/**
Expand Down
4 changes: 3 additions & 1 deletion packages/types/src/interfaces/types-lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,9 @@ declare module '@polkadot/types/lookup' {
readonly asSr25519: SpCoreSr25519Signature;
readonly isEcdsa: boolean;
readonly asEcdsa: SpCoreEcdsaSignature;
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
readonly isEth: boolean;
readonly asEth: SpCoreEcdsaSignature;
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
}

/** @name SpCoreEd25519Signature (237) */
Expand Down

0 comments on commit 554ef05

Please sign in to comment.