-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8149a8c
commit fa84e34
Showing
5 changed files
with
104 additions
and
5 deletions.
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
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
import MultiSigFlowToken from 0x{{.MultiSigFlowToken}} | ||
import OnChainMultiSig from 0x{{.OnChainMultiSig}} | ||
|
||
transaction (multiSigVaultAddr: Address, txIndex: UInt64) { | ||
prepare(payer: AuthAccount) { | ||
} | ||
|
||
execute { | ||
// Get the account of where the multisig vault is | ||
let acct = getAccount(multiSigVaultAddr) | ||
|
||
// Get the capability to try to execute a transaction that has a payload presigned by multiple parties | ||
let vaultRef = acct.getCapability(MultiSigFlowToken.VaultPubSigner) | ||
.borrow<&MultiSigFlowToken.Vault{OnChainMultiSig.PublicSigner}>() | ||
?? panic("Could not borrow vault pub sig reference") | ||
|
||
let store = vaultRef.signatureStore! | ||
store.txIndex = txIndex | ||
vaultRef.signatureStore = store | ||
} | ||
} |
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,19 @@ | ||
import MultiSigFlowToken from 0x{{.MultiSigFlowToken}} | ||
import OnChainMultiSig from 0x{{.OnChainMultiSig}} | ||
|
||
transaction (multiSigVaultAddr: Address, txIndex: UInt64) { | ||
prepare(payer: AuthAccount) { | ||
} | ||
|
||
execute { | ||
// Get the account of where the multisig vault is | ||
let acct = getAccount(multiSigVaultAddr) | ||
|
||
// Get the capability to try to execute a transaction that has a payload presigned by multiple parties | ||
let vaultRef = acct.getCapability(MultiSigFlowToken.VaultPubSigner) | ||
.borrow<&MultiSigFlowToken.Vault{OnChainMultiSig.PublicSigner}>() | ||
?? panic("Could not borrow vault pub sig reference") | ||
|
||
vaultRef.signatureStore!.txIndex = txIndex | ||
} | ||
} |